/* ====================== E-Butler Reservation Widget ====================== */

.reservation-widget {
    font-family: "Inter", sans-serif;
    padding: 24px 0;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: -15px;
}

/* Mobile breathing room */
@media (max-width: 520px) {
    .reservation-widget {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.dates-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;          /* Your original spacing */
}

.date-box {
    text-align: center;
    flex: 1;
}

.date-box .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.date-box .date {
    font-family: "Inter", sans-serif !important;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.date-box .weekday {
    font-size: 15px;
    color: #666;
    margin-top: 6px;
}

.arrow {
    font-size: 26px;
    color: #999;
    padding: 0 20px;
    margin-top: 12px;
}

/* Reservation Meta */
.reservation-meta {
    text-align: center;
    margin-bottom: 10px;          /* Your original spacing */
}

.reservation-id {
    font-size: 16px;
    color: #555;
    margin-bottom: 0px;           /* Your original small margin */
    font-weight: 500;
}

.reservation-id strong {
    font-weight: 600;
    color: #1a1a1a;
}

.meta-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 16px;
    color: #444;
    margin-bottom: 1px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.meta-item i {
    font-size: 21px;
    color: #555;
}

/* 2-Column Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15.5px;
}

.info-table th {
    text-align: left;
    padding: 12px 0 10px 0;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.info-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 480px) {
    .reservation-widget {
        padding: 20px 0;
    }
}

/* ====================== Welcome Title - Auto Font Size ====================== */

#welcome-title {
    margin-bottom: 20px !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    transition: font-size 0.2s ease;
}

/* Auto-resize welcome text up to 24px */
@media (min-width: 380px) { #welcome-title { font-size: 17px; } }
@media (min-width: 420px) { #welcome-title { font-size: 19px; } }
@media (min-width: 480px) { #welcome-title { font-size: 21px; } }
@media (min-width: 560px) { #welcome-title { font-size: 23px; } }
@media (min-width: 620px) { #welcome-title { font-size: 24px; } }