/* Booking success/cancel: solid navbar so links are visible */
.header-style-one.navbar-solid {
  position: relative;
  background: #fff !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.header-style-one.navbar-solid .main-nav-area ul.rts-desktop-menu .menu-item .rts-dropdown-main-element,
.header-style-one.navbar-solid .main-nav-area ul li a {
  color: var(--text-dark, #333) !important;
}
.header-style-one.navbar-solid .button-area-start .rts-btn.btn-white {
  color: var(--secondary-color, #212E51) !important;
  border-color: currentColor;
}
.header-style-one.navbar-solid .logo .light { display: block !important; }
.header-style-one.navbar-solid .logo .dark { display: none !important; }

/* CLS: Hero image - reserve space before load */
.rts-banner-area-four .banner-hero img {
  display: block;
  aspect-ratio: 411 / 542;
}

/* CLS: Logo - reserve space before images load */
.header-style-one-wrapper .logo-area .logo {
  min-height: 45px;
}
.header-style-one-wrapper .logo-area .logo img {
  width: 149px;
  height: auto;
  display: block;
  object-fit: contain;
}

:root {
    --primary-color: #D2B589;
    --secondary-color: #212E51;
    --primary-light: rgba(210, 181, 137, 0.1);
    --primary-dark: #b89a72;
    --secondary-light: #2a3a68;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #eaeaea;
}

/* Dashboard / client area scoped variables */
.dashboard-area,
.client-dashboard,
.profile-area {
    --dash-surface: #fff;
    --dash-surface-2: rgba(210, 181, 137, 0.08);
    --dash-text-primary: var(--secondary-color);
    --dash-text-secondary: var(--text-dark);
    --dash-text-muted: var(--text-light);
    --dash-border: var(--border-color);
    --dash-success: #28a745;
    --dash-warning: #ffc107;
    --dash-danger: #dc3545;
    --dash-info: #17a2b8;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.dashboard-sidebar .user-profile {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 10px 10px 0 0;
    color: white;
}

.dashboard-sidebar .user-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.dashboard-sidebar .user-profile h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: white;
}

.dashboard-sidebar .user-profile p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.dashboard-sidebar .user-profile .badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.dashboard-sidebar .sidebar-menu {
    padding: 20px 0;
}

.dashboard-sidebar .sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-sidebar .sidebar-menu ul li {
    margin: 0;
}

.dashboard-sidebar .sidebar-menu ul li a {
    display: block;
    padding: 15px 30px;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dashboard-sidebar .sidebar-menu ul li a:hover,
.dashboard-sidebar .sidebar-menu ul li a.active {
    background: var(--primary-light);
    border-left-color: var(--primary-color);
    color: var(--secondary-color);
}

.dashboard-sidebar .sidebar-menu ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.dashboard-sidebar .sidebar-menu ul li a.active i,
.dashboard-sidebar .sidebar-menu ul li a:hover i {
    color: var(--secondary-color);
}

.dashboard-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
}

.dashboard-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-header h3 i {
    color: var(--primary-color);
}

.dashboard-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(33, 46, 81, 0.2);
    transition: transform 0.3s ease;
    border: none;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card.orange {
    background: linear-gradient(135deg, #D2B589 0%, var(--primary-dark) 100%);
}

.stats-card.green {
    background: linear-gradient(135deg, #28a745 0%, #34c759 100%);
}

.stats-card.purple {
    background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    color: white;
}

.stats-card.purple h5,
.stats-card.purple h2,
.stats-card.purple i {
    color: white;
}

.stats-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stats-card h2 {
    font-size: 32px;
    margin-bottom: 0;
    font-weight: 700;
}

.stats-card i {
    font-size: 40px;
    opacity: 0.8;
}

.booking-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.booking-table .table {
    margin-bottom: 0;
}

.booking-table .table thead th {
    background: var(--primary-light);
    border-bottom: 2px solid var(--border-color);
    padding: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-table .table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--border-color);
}

.booking-table .table tbody tr:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.8);
}

.booking-table .table tbody tr:hover {
    background-color: var(--primary-light);
}

.booking-table .table tbody td.text-end,
.booking-table .table thead th.text-end {
    text-align: right;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Dashboard info/primary button colors */
.dashboard-area .btn-info {
    background-color: var(--dash-info, #17a2b8);
    border-color: var(--dash-info, #17a2b8);
    color: #fff;
}

.dashboard-area .btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: #fff;
}

.action-buttons .btn {
    padding: 6px 14px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 4px;
    border-radius: 6px;
    font-weight: 500;
    min-height: 36px;
}

.dashboard-area .btn:focus-visible,
.client-dashboard .btn:focus-visible,
.dashboard-sidebar a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.dashboard-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.dashboard-verify-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    color: #856404;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-verify-alert .alert-message {
    flex: 1;
    min-width: 200px;
}

.dashboard-verify-alert .btn {
    flex-shrink: 0;
}

.profile-area .dashboard-verify-alert {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.profile-area .alert-success,
.profile-area .alert-danger {
    border-radius: 10px;
}

.inner-title ul span {
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.group-reservation-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.group-reservation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(210, 181, 137, 0.2);
}

.group-reservation-card h5 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.group-reservation-card .badge {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 5px;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.group-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.group-meta span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
}

.group-meta span i {
    margin-right: 8px;
    color: var(--primary-color);
}

.group-progress {
    margin-top: 15px;
}

.group-progress .progress {
    height: 8px;
    border-radius: 4px;
    background-color: var(--primary-light);
}

.group-progress .progress-bar {
    background-color: var(--primary-color);
}

.btn-view-all {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(210, 181, 137, 0.2);
}

.btn-view-all:hover {
    background: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(210, 181, 137, 0.3);
}

.modal-content {
    border-radius: 10px;
    border: none;
    border: 2px solid var(--primary-color);
}

.modal-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid var(--primary-color);
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.inner-banner {
    background: linear-gradient(rgba(33, 46, 81, 0.9), rgba(33, 46, 81, 0.9)),
        url('/assets/img/inner-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.inner-title h3 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.inner-title ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.inner-title ul li {
    color: rgba(255, 255, 255, 0.8);
}

.inner-title ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.inner-title ul li a:hover {
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 181, 137, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 181, 137, 0.25);
}

.pagination .page-link {
    color: var(--secondary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.pagination .page-link:hover {
    color: var(--primary-color);
}

/* Profile and change-password page styles (match dashboard) */
.profile-area {
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.5) 0%, #fff 100%);
}

.profile-area .profile-content,
.profile-area .profile-card {
    background: var(--dash-surface, #fff);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--dash-border, var(--border-color));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.profile-area .profile-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-area .profile-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.profile-area .profile-header h4 {
    /* font-size: 1.35rem; */
    color: var(--secondary-color);
    font-weight: 600;
}

.profile-area .profile-form-card {
    border-left: 4px solid var(--primary-color);
}

.profile-area .profile-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.profile-area .form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.profile-area .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.profile-area .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
}

.profile-area .btn-bg-one {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.profile-area .btn-bg-one:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.profile-area .btn-bg-two {
    background: var(--dash-text-muted, #6c757d) !important;
    border-color: var(--dash-text-muted) !important;
    color: #fff !important;
}

.profile-area .btn-bg-two:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.profile-area .profile-form .btn-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dash-border, var(--border-color));
}

.profile-area .profile-form .form-group {
    margin-bottom: 1.25rem;
}

.profile-area .profile-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--dash-border, #eaeaea);
    padding: 0.65rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.profile-area .profile-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 181, 137, 0.15);
    outline: none;
}

.profile-area .profile-form .form-control:hover:not(:focus):not(.is-invalid) {
    border-color: #c4c4c4;
    background-color: #fafafa;
}

.profile-area .btn-profile-primary,
.profile-area .btn-profile-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.profile-area .btn-profile-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.profile-area .btn-profile-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.profile-area .btn-profile-secondary {
    background: transparent;
    border: 2px solid var(--dash-border, #dee2e6);
    color: var(--text-dark);
}

.profile-area .btn-profile-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-1px);
}

.profile-area .profile-info-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-area .profile-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(210, 181, 137, 0.06);
    border-radius: 8px;
}

.profile-area .profile-info-row .info-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile-area .profile-info-row .info-label i {
    color: var(--primary-color);
    opacity: 0.9;
}

.profile-area .profile-info-row .info-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.sign-in-area .user-all-form .contact-form,
.sign-in-area .section-title h2 {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 20px;
    }

    .stats-card h2 {
        font-size: 24px;
    }

    .group-meta {
        gap: 10px;
    }

    .inner-title h3 {
        font-size: 28px;
    }

    .dashboard-area .inner-banner {
        padding: 50px 0 40px;
        margin-bottom: 40px;
    }

    .profile-area .profile-content,
    .profile-area .profile-card {
        padding: 1.25rem;
    }
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.reservation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reservation-card .card-header {
    background-color: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reservation-card .card-body {
    padding: 1.5rem;
    flex: 1;
}

.reservation-card .card-footer {
    background-color: #fff;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
}

.badge-status {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 30px;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.badge-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-completed {
    background-color: #cce5ff;
    color: #004085;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.info-row i {
    width: 20px;
    color: #BA6827;
    margin-right: 10px;
}

.view-btn {
    width: 100%;
    text-align: center;
}

.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: #BA6827;
    border-color: #BA6827;
    color: #fff;
}

.pagination .page-link {
    color: #BA6827;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.detail-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
}

.detail-section h5 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

.detail-section#manage .rts-btn,
.detail-section#manage .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    min-height: 36px;
}

.detail-row {
    display: flex;
    margin-bottom: 15px;
}

.detail-label {
    width: 200px;
    font-weight: 600;
    color: #555;
}

.detail-value {
    flex: 1;
    color: #333;
}

.badge-status {
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.badge-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-completed {
    background-color: #cce5ff;
    color: #004085;
}

.attachment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attachment-list li {
    margin-bottom: 5px;
}

.attachment-list a {
    color: #0d6efd;
    text-decoration: none;
}

.attachment-list a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .detail-row {
        flex-direction: column;
    }

    .detail-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Ensure images in the gallery are responsive */
.top-image-area .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Adjust feature list to match hotel facilities */
.feature-list-area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.feature-list-area li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-area .icon img {
    width: 24px;
    height: 24px;
}

/* Room cards styling inside tab */
.room-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.room-card h5 {
    margin-bottom: 10px;
}

.room-card .price {
    font-size: 18px;
    font-weight: 600;
    color: #D1B689;
}


/* Active tag styling (matches the static template's tag look) */
.side-bar-widget .side-bar-widget-tag li.active {
    background-color: #D1B689;
    border-color: #D1B689;
}

.side-bar-widget .side-bar-widget-tag li.active a {
    color: #ffffff;
}

/* Ensure the sidebar matches the static design */
.left-sidebar-area .tag-area ul li {
    cursor: pointer;
    transition: all 0.3s ease;
}

.left-sidebar-area .tag-area ul li.active {
    background-color: #D1B689;
    border-color: #D1B689;
    color: #fff;
}

/* Adjust pagination to look like the static one */
.rts-course-pagination-area ul {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.rts-course-pagination-area ul li button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    margin-right: 8px;
    background: #fff;
    color: #071c1f;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}

.rts-course-pagination-area ul li button.active,
.rts-course-pagination-area ul li button:hover {
    background: #D1B689;
    border-color: #D1B689;
    color: #fff;
}

.blog-details-area .image.top-image img {
    width: 100%;
    height: auto;
}

/* Style for comment section if needed */
.comment-area .comment-box {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comment-area .comment-box:last-child {
    border-bottom: none;
}

.reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D1B689;
}

.tag-area li {
    cursor: pointer;
}

.mobile-menu-main nav ul li a {
    color: whitesmoke;
}

/* Available Rooms – campaign hotel detail */
.room-card-hover {
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.room-card-hover:hover {
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12) !important;
}
.room-card-price {
    color: #D1B689;
}
.room-book-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
