/* WordPress wrapper classes */
.main {
    padding-top: 78px !important;
}

.breadcrumbs-space {
    display: none !important;
}

.align.wp-block-account-booking,
.wp-block-account-booking {
    max-width: 1280px !important;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.account-booking-block {
    max-width: 1280px;
    margin: 0 auto;
    background: transparent;
}

.account-booking-layout {
    display: grid;
    grid-template-columns: 445px 1fr;
    gap: 64px;
    align-items: start;
    padding: 76px 0 80px 0;
}

@media screen and (max-width: 968px) {
    .account-booking-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Sidebar */
.account-booking-sidebar {
    position: sticky;
    top: 32px;
}

.account-booking-sidebar-card {
    background: #fff !important;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 20px 24px 0 rgba(63, 50, 16, 0.10);
    backdrop-filter: blur(4px);
}

.account-booking-profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
    border-bottom: 1px solid #A2863E;
}

.account-booking-profile-name-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-booking-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a2863e 0%, #8a6f33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.account-booking-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.account-booking-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}

.account-profile-name-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-booking-profile-name {
    color: #302C2C;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    padding: 0;
}

.account-booking-join-date {
    color: #302C2C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
    padding: 0;
}

/* Menu */
.account-booking-menu {
    display: flex;
    flex-direction: column;
    padding: 6px 24px 24px 24px;
}

.account-booking-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    color: #C1AE7E;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    border-bottom: 1px solid #F6F3EC;
    padding: 16px 0;
}

.account-booking-menu-item:hover {
    color: #A2863E;
}

.account-booking-menu-item.active {
    color: #A2863E;
    font-weight: 700;
}

.account-booking-menu-icon {
    flex-shrink: 0;
    color: currentColor;
}

.account-booking-menu-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: currentColor;
}

.account-booking-menu-item:not(.active) .account-booking-menu-arrow {
    display: none;
}

/* Logout Section */
.account-booking-logout-section {
    margin-top: auto;
    padding: 8px 24px 24px 24px;
}

.account-booking-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 64px;
    border: 2px solid #B59E65;
    background: #FFF;
    box-shadow: 0 0 14px 0 #FFF;
    color: #A2863E;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.account-booking-logout-btn:hover {
    background: #a2863e;
    color: #fff;
}

.account-booking-logout-arrow {
    flex-shrink: 0;
    color: currentColor;
}

/* Main Content */
.account-booking-main-content {
    width: 100%;
}

.account-booking-title {
    color: #302C2C;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 32px 0;
    padding: 0;
}

.account-booking-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
    border-radius: 12px;
}

.account-booking-empty p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.account-booking-list {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

/* Pagination */
.account-booking-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #F6F3EC;
}

.account-booking-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #A2863E;
    background: #FFF;
    color: #A2863E;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.account-booking-pagination-link:hover {
    background: #A2863E;
    color: #FFF;
}

.account-booking-pagination-link.account-booking-pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.account-booking-pagination-link svg {
    width: 20px;
    height: 20px;
}

.account-booking-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-booking-pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #A2863E;
    background: #FFF;
    color: #A2863E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    transition: all 0.2s ease;
    cursor: pointer;
}

.account-booking-pagination-number:hover {
    background: #A2863E;
    color: #FFF;
}

.account-booking-pagination-number.account-booking-pagination-active {
    background: #A2863E;
    color: #FFF;
    border-color: #A2863E;
    cursor: default;
    pointer-events: none;
}

.account-booking-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #302C2C;
    font-size: 16px;
    font-weight: 500;
}

.account-booking-item {
    padding: 16px;
    transition: box-shadow 0.2s ease;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(63, 50, 16, 0.10);
    gap: 24px;
    text-decoration: none;
    color: inherit;
}

.account-booking-item-image {
    width: 285px;
    min-width: 285px;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.account-booking-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.account-booking-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.account-booking-item-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.account-booking-item-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.account-booking-item-room-title {
    margin: 0;
    color: #302C2C;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
}

.account-booking-item-status-badge {
    display: inline-flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4;
    background: #F6F3EC;
    color: #A2863E;
    font-size: 12px;
    font-weight: 600;
    line-height: 150%;
    flex-shrink: 0;
    width: fit-content;
}

.account-booking-item-id {
    margin: 0;
    color: #735F2C;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.account-booking-item-menu {
    position: relative;
}

.account-booking-item-menu-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #302C2C;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.account-booking-item-menu-btn:hover {
    color: #A2863E;
    background: rgba(162, 134, 62, 0.1);
}

.account-booking-item-menu-btn svg {
    width: 20px;
    height: 20px;
}

.account-booking-item-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 10;
    overflow: hidden;
}

.account-booking-item-menu-link {
    display: block;
    padding: 12px 16px;
    color: #302C2C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    transition: background 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.account-booking-item-menu-link:hover {
    background: #F6F3EC;
    color: #A2863E;
}

.account-booking-item-menu-cancel {
    color: #DB2B46;
}

.account-booking-item-menu-cancel:hover {
    background: #FFEBEE;
    color: #DB2B46;
}

.account-booking-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-booking-item-bed-info {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #735F2C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.account-booking-item-dates {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #302C2C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.account-booking-calendar-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #A2863E;
}

.account-booking-calendar-arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #A2863E;
}

.account-booking-item-voucher {
    display: inline-block;
    padding: 4px 8px;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #F6F3EC;
    color: #302C2C;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.account-booking-voucher-code {
    color: #735F2C;
    font-weight: 700;
}

.account-booking-item-footer {
    margin-top: auto;
}

.account-booking-item-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.account-booking-price-current {
    color: #302C2C;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
}

.account-booking-price-original {
    color: #DB2B46;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: line-through;
}

.account-booking-price-original-night {
    color: #302C2C;
    font-size: 12px;
    font-weight: 600;
    line-height: 150%;
}

.account-booking-item-button {
    display: inline-block;
    padding: 8px 16px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.account-booking-item-button:hover {
    background: #135e96;
    color: #fff;
    text-decoration: none;
}

.account-booking-item-button-cancel {
    display: inline-block;
    padding: 8px 16px;
    background: #d63638;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.account-booking-item-button-cancel:hover {
    background: #b32d2e;
    color: #fff;
    text-decoration: none;
}

.account-booking-item-button-cancel:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status Badge */
.status-badge,
.account-booking-item-status-badge {
    display: inline-flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #F6F3EC;
    color: #A2863E;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
}

.status-pending,
.account-booking-item-status-badge.status-pending {
    background: #E9ECEF;
    color: #495057;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pending::before,
.account-booking-item-status-badge.status-pending::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: currentColor; /* Akan mengikuti warna text parent */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23a9 9 0 1 0 0-18a9 9 0 0 0 0 18' opacity='0.5'/%3E%3Cpath fill='%23000' d='M12 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.25 2.75A.75.75 0 0 1 10 2h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75' clip-rule='evenodd'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23a9 9 0 1 0 0-18a9 9 0 0 0 0 18' opacity='0.5'/%3E%3Cpath fill='%23000' d='M12 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.25 2.75A.75.75 0 0 1 10 2h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75' clip-rule='evenodd'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.status-booked,
.account-booking-item-status-badge.status-booked {
    background: #E9ECEF;
    color: #495057;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-booked::before,
.account-booking-item-status-badge.status-booked::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: currentColor; /* Akan mengikuti warna text parent */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23a9 9 0 1 0 0-18a9 9 0 0 0 0 18' opacity='0.5'/%3E%3Cpath fill='%23000' d='M12 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.25 2.75A.75.75 0 0 1 10 2h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75' clip-rule='evenodd'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 23a9 9 0 1 0 0-18a9 9 0 0 0 0 18' opacity='0.5'/%3E%3Cpath fill='%23000' d='M12 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.25 2.75A.75.75 0 0 1 10 2h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75' clip-rule='evenodd'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.status-verified,
.account-booking-item-status-badge.status-verified {
    background: #F6F3EC;
    color: #A2863E;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-verified::before,
.account-booking-item-status-badge.status-verified::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: currentColor; /* Akan mengikuti warna text parent */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m9.55 18l-5.7-5.7l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m9.55 18l-5.7-5.7l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.status-declined,
.account-booking-item-status-badge.status-declined,
.status-cancelled,
.account-booking-item-status-badge.status-cancelled {
    background: #f8d7da;
    color: #721c24;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-declined::before,
.account-booking-item-status-badge.status-declined::before,
.status-cancelled::before,
.account-booking-item-status-badge.status-cancelled::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(./calendar-remove.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.account-booking-item-header-left-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Modal Styles */
.reservation-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-detail-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.reservation-detail-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100001;
}

.reservation-detail-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #c3c4c7;
    background: #f6f7f7;
}

.reservation-detail-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
}

.reservation-detail-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #50575e;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.reservation-detail-modal-close:hover {
    color: #1d2327;
}

.reservation-detail-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.reservation-detail-loading,
.reservation-detail-error {
    text-align: center;
    padding: 40px 20px;
    color: #50575e;
}

.reservation-detail-error {
    color: #d63638;
}

.reservation-detail-section {
    margin-bottom: 30px;
}

.reservation-detail-section:last-child {
    margin-bottom: 0;
}

.reservation-detail-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1d2327;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f1;
}

.reservation-detail-info {
    display: grid;
    gap: 12px;
}

.reservation-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
}

.reservation-detail-label {
    font-weight: 600;
    color: #1d2327;
    min-width: 150px;
}

.reservation-detail-value {
    color: #50575e;
    text-align: right;
    flex: 1;
}

.reservation-detail-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.reservation-detail-pricing-table thead th {
    background: #f6f7f7;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #1d2327;
    font-size: 13px;
    border-bottom: 1px solid #c3c4c7;
}

.reservation-detail-pricing-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f1;
    color: #50575e;
}

.reservation-detail-pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.reservation-detail-pricing-subtotal {
    background: #f6f7f7;
    border-top: 2px solid #c3c4c7;
}

.reservation-detail-pricing-subtotal th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.reservation-detail-pricing-formula {
    color: #50575e;
    font-size: 13px;
    margin-left: 10px;
    font-weight: normal;
}

.reservation-detail-pricing-total {
    background: #f0f6fc;
    border-top: 2px solid #2271b1;
}

.reservation-detail-pricing-total th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.reservation-detail-logs {
    display: grid;
    gap: 12px;
}

.reservation-detail-log-item {
    padding: 12px;
    background: #f6f7f7;
    border-radius: 4px;
    border-left: 3px solid #2271b1;
}

.reservation-detail-log-date {
    font-size: 12px;
    color: #50575e;
    margin-bottom: 4px;
}

.reservation-detail-log-message {
    color: #1d2327;
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .account-booking-block {
        padding: 1rem;
    }
    
    .account-booking-sidebar-card,
    .account-booking-main-content {
        padding: 1.5rem;
    }
    
    .account-booking-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .account-booking-item-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .account-booking-item-content {
        padding: 0;
    }
    
    .account-booking-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .account-booking-item-header-right {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .account-booking-item-menu-dropdown {
        right: 0;
        left: auto;
    }
    
    .account-booking-item-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .account-booking-pagination {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .account-booking-pagination-link,
    .account-booking-pagination-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    
    .account-booking-pagination-numbers {
        gap: 4px;
    }
    
    .account-booking-pagination-dots {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .reservation-detail-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .reservation-detail-modal-header {
        padding: 16px 20px;
    }

    .reservation-detail-modal-body {
        padding: 20px;
    }

    .reservation-detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .reservation-detail-value {
        text-align: left;
    }

    .reservation-detail-pricing-table {
        font-size: 13px;
    }

    .reservation-detail-pricing-table thead th,
    .reservation-detail-pricing-table tbody td {
        padding: 8px;
    }
}

/* Dark Mode Support */
.dark-mode .account-booking-profile-name {
    color: #fff;
}

.dark-mode .account-booking-join-date {
    color: #ccc;
}

.dark-mode .account-booking-menu-item {
    color: #C1AE7E;
}

.dark-mode .account-booking-menu-item:hover,
.dark-mode .account-booking-menu-item.active {
    color: #A2863E;
}

.dark-mode .account-booking-logout-btn {
    background: #FFF;
    border-color: #B59E65;
    color: #A2863E;
}

.dark-mode .account-booking-logout-btn:hover {
    background: #a2863e;
    color: #fff;
}

.dark-mode .account-booking-title {
    color: #fff;
}

.dark-mode .account-booking-empty {
    background: #2a2a2a;
}

.dark-mode .account-booking-empty p {
    color: #ccc;
}

.dark-mode .account-booking-item {
    background: #1a1a1a;
    border-color: #333;
}

.dark-mode .account-booking-item-room-title {
    color: #fff;
}

.dark-mode .account-booking-item-bed-info,
.dark-mode .account-booking-item-dates,
.dark-mode .account-booking-item-voucher {
    color: #ccc;
}

.dark-mode .account-booking-calendar-icon {
    color: #ccc;
}

.dark-mode .account-booking-voucher-code {
    color: #a2863e;
}

.dark-mode .account-booking-price-current {
    color: #fff;
}

.dark-mode .account-booking-price-original {
    color: #999;
}


.account-booking-item-bed-info-separator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #D9D9D9;
    border-radius: 50%;
    margin: 0 4px;
    vertical-align: middle;
}

/* Custom Toast Notification */
.account-booking-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.account-booking-toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.account-booking-toast-content {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #333;
}

.account-booking-toast.success .account-booking-toast-content {
    border-left-color: #28a745;
    background: #f8fff9;
}

.account-booking-toast.error .account-booking-toast-content {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.account-booking-toast.warning .account-booking-toast-content {
    border-left-color: #ffc107;
    background: #fffef5;
}

.account-booking-toast.info .account-booking-toast-content {
    border-left-color: #17a2b8;
    background: #f5fcff;
}

.account-booking-toast-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.account-booking-toast.success .account-booking-toast-icon::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

.account-booking-toast.error .account-booking-toast-icon::before {
    content: '✕';
    color: #dc3545;
    font-weight: bold;
}

.account-booking-toast.warning .account-booking-toast-icon::before {
    content: '⚠';
    color: #ffc107;
}

.account-booking-toast.info .account-booking-toast-icon::before {
    content: 'ℹ';
    color: #17a2b8;
}

.account-booking-toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.account-booking-toast-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.account-booking-toast-close:hover {
    color: #333;
}

/* Dark mode support */
.dark-mode .account-booking-toast-content {
    background: #2a2a2a;
    color: #fff;
}

.dark-mode .account-booking-toast-message {
    color: #fff;
}

.dark-mode .account-booking-toast-close {
    color: #ccc;
}

.dark-mode .account-booking-toast-close:hover {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .account-booking-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .account-booking-toast.show {
        transform: translateY(0);
    }
}

/* Custom Confirmation Modal */
.account-booking-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-booking-confirm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.account-booking-confirm-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.account-booking-confirm-modal-title {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.account-booking-confirm-modal-message {
    margin: 0 0 24px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.account-booking-confirm-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.account-booking-confirm-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.account-booking-confirm-cancel {
    background: #f5f5f5;
    color: #333;
}

.account-booking-confirm-cancel:hover {
    background: #e0e0e0;
}

.account-booking-confirm-ok {
    background: #dc3545;
    color: #fff;
}

.account-booking-confirm-ok:hover {
    background: #c82333;
}

/* Dark mode support */
.dark-mode .account-booking-confirm-modal-content {
    background: #2a2a2a;
}

.dark-mode .account-booking-confirm-modal-title {
    color: #fff;
}

.dark-mode .account-booking-confirm-modal-message {
    color: #ccc;
}

.dark-mode .account-booking-confirm-cancel {
    background: #3a3a3a;
    color: #fff;
}

.dark-mode .account-booking-confirm-cancel:hover {
    background: #4a4a4a;
}