/* Mây Farmstay Modern Design System */

:root {
    /* Color Palette */
    --primary-hsl: 158, 41%, 23%;
    --primary: hsl(var(--primary-hsl));
    --primary-light: hsl(158, 35%, 35%);
    --primary-dark: hsl(158, 50%, 15%);
    --accent-hsl: 38, 92%, 50%;
    --accent: hsl(var(--accent-hsl));
    --accent-light: hsl(38, 95%, 60%);
    --accent-dark: hsl(38, 95%, 40%);
    
    --bg-base: #f1f5f3; /* Soft light mint/grey background */
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-solid: #ffffff;
    --text-main: #1c2b24;
    --text-muted: #62726a;
    --border-color: rgba(27, 67, 50, 0.1);
    --border-color-solid: #e2ebe6;
    
    --success: #15803d;
    --success-bg: #f0fdf4;
    --warning: #b45309;
    --warning-bg: #fef3c7;
    --danger: #b91c1c;
    --danger-bg: #fef2f2;
    --info: #0369a1;
    --info-bg: #f0f9ff;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 12px rgba(27, 67, 50, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(27, 67, 50, 0.08), 0 8px 10px -6px rgba(27, 67, 50, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(27, 67, 50, 0.06);
    
    /* Border Radii - Rounded & Modern */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Fonts - Cozy & Friendly Rounded */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f3;
}
::-webkit-scrollbar-thumb {
    background: #c3d5cd;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.btn-text {
    padding: 8px 16px;
    color: var(--primary);
    font-weight: 600;
    box-shadow: none;
}

.btn-text:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
}

/* Badge Styles */
.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-accent { background: var(--warning-bg); color: var(--warning); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-info { background: var(--info-bg); color: var(--info); }

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.logo img {
    height: 44px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navbar-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.navbar-nav a:hover,
.navbar-nav li.active a {
    color: white;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.navbar-nav a:hover::after,
.navbar-nav li.active a::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.25)), url('images/pool.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About / Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.overview-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--bg-solid);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.overview-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.overview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experiences / Activities Section */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.experience-card {
    background: var(--bg-solid);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
    transition: var(--transition-normal);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.experience-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.experience-card:hover .experience-img img {
    transform: scale(1.1);
}

.experience-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--primary-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.experience-info {
    padding: 24px;
}

.experience-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.experience-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.room-card {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-qty {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.room-prices {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color-solid);
    background: #fbfdfc;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.room-price-row:last-child {
    margin-bottom: 0;
}

.room-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.room-price-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.room-price-val span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.room-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.spec-pill {
    background: #f0f4f2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-notes {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: auto;
    padding-bottom: 24px;
}

.room-action {
    margin-top: auto;
}

/* Booking Section */
.booking-section {
    background: #ebf1ee;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-card {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-form-step {
    margin-bottom: 32px;
}

.booking-form-step:last-child {
    margin-bottom: 0;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color-solid);
    padding-bottom: 12px;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color-solid);
    background: #fcfdfc;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.15);
    background: white;
}

.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-checkbox-card {
    border: 1px solid var(--border-color-solid);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    background: #fbfdfc;
    transition: var(--transition-fast);
}

.service-checkbox-card:hover {
    border-color: var(--primary-light);
    background: #f4f8f6;
}

.service-checkbox-card.selected {
    border-color: var(--primary);
    background: #eef5f2;
    box-shadow: var(--shadow-sm);
}

.service-checkbox-card input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary);
}

.service-chk-info {
    display: flex;
    flex-direction: column;
}

.service-chk-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.service-chk-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-top: 4px;
}

.service-chk-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Invoice Section (Right panel) */
.invoice-panel {
    position: sticky;
    top: 100px;
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color-solid);
}

.invoice-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color-solid);
    padding-bottom: 16px;
}

.invoice-room-summary {
    background: #f0f5f2;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
}

.inv-room-name {
    font-weight: 700;
    color: var(--primary-dark);
}

.inv-date-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.invoice-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.invoice-table tr {
    border-bottom: 1px dashed var(--border-color-solid);
}

.invoice-table tr:last-child {
    border-bottom: none;
}

.invoice-table td.val {
    text-align: right;
    font-weight: 700;
    color: var(--primary-dark);
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--primary);
    padding-top: 16px;
    margin-bottom: 16px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.total-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--warning-bg);
    color: var(--warning);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-weight: 700;
}

.deposit-val {
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

/* Modals & Popups */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 43, 36, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color-solid);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.modal-body {
    padding: 32px;
}

.success-checkout {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px auto;
}

.success-checkout h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-checkout p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.booking-code-box {
    background: #f0f4f2;
    border: 2px dashed var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
}

.transfer-info-card {
    background: var(--bg-base);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    margin-bottom: 24px;
    border: 1px solid var(--border-color-solid);
}

.transfer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.transfer-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.transfer-details p strong {
    color: var(--primary-dark);
}

.qr-code-wrapper {
    background: white;
    padding: 8px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.qr-code-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

/* Admin Dashboard View */
.admin-section {
    display: none;
    padding-top: 120px;
    padding-bottom: 80px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: var(--bg-solid);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
}

.admin-stat-card.revenue { border-left-color: var(--accent); }
.admin-stat-card.pending { border-left-color: var(--warning); }
.admin-stat-card.confirmed { border-left-color: var(--success); }

.admin-stat-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.admin-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Scheduler / Booking Grid Calendar */
.scheduler-panel {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 1px solid var(--border-color-solid);
}

.scheduler-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.scheduler-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.scheduler-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.scheduler-wrapper {
    overflow-x: auto;
}

.scheduler-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.scheduler-table th,
.scheduler-table td {
    border: 1px solid var(--border-color-solid);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
}

.scheduler-table th {
    background: #f0f4f2;
    color: var(--primary-dark);
    font-weight: 700;
    min-width: 50px;
}

.scheduler-table th.room-col,
.scheduler-table td.room-col {
    text-align: left;
    min-width: 160px;
    background: #fbfdfc;
    font-weight: 700;
    position: sticky;
    left: 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

.cell-booked {
    background: var(--info-bg);
    color: var(--info);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    position: relative;
}

.cell-booked::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

.cell-booked:hover::after {
    opacity: 1;
}

.cell-free {
    color: #cbd5e1;
}

/* Booking List Table */
.bookings-panel {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
}

.bookings-panel h3 {
    margin-bottom: 24px;
}

.bookings-table-wrapper {
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.bookings-table th,
.bookings-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color-solid);
    font-size: 0.9rem;
}

.bookings-table th {
    background: #fbfdfc;
    font-weight: 700;
    color: var(--primary-dark);
}

.bookings-table tr:hover {
    background: #fbfdfc;
}

.action-select {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color-solid);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

/* Footer Section */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 48px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-info-list i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Mode Switches (User vs Admin) */
.view-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .invoice-panel {
        position: static;
        margin-top: 32px;
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .navbar-nav {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 67, 50, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition-fast);
    gap: 8px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 1.5rem;
}
.gallery-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* Testimonial Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.testimonial-card {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-normal);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.testimonial-card .stars {
    color: var(--accent);
    display: flex;
    gap: 4px;
}
.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 0.95rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f4f2;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.reviewer-info {
    display: flex;
    flex-direction: column;
}
.reviewer-info strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}
.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Accordion Styles */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
}
.faq-item {
    border-bottom: 1px solid var(--border-color-solid);
    padding: 20px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.faq-question i {
    transition: var(--transition-fast);
    color: var(--text-muted);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
.faq-answer p {
    padding-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-dark);
}

/* Route / Directions Styles */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.route-card {
    background: var(--bg-solid);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
    text-align: center;
    transition: var(--transition-normal);
}
.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.route-icon {
    width: 64px;
    height: 64px;
    background: #f0f4f2;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}
.route-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.route-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Wizard Stepper Progress Bar */
.stepper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    position: relative;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color-solid);
}
.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    position: relative;
    cursor: pointer;
    flex: 1;
}
.step-indicator .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e6e4;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.step-indicator .step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.step-indicator.active .step-num {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.15);
}
.step-indicator.active .step-text {
    color: var(--primary-dark);
    font-weight: 700;
}
.step-indicator.completed .step-num {
    background: var(--success);
    color: white;
}
.step-indicator.completed .step-text {
    color: var(--success);
}
.step-line {
    height: 3px;
    background: #e2e6e4;
    flex-grow: 1;
    margin: 0 -10px;
    position: relative;
    top: -14px;
    z-index: 1;
}
.step-line.active {
    background: var(--primary);
}

/* Wizard Steps Toggle */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
    animation: fadeInStep 0.4s ease;
}
@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.wizard-step-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color-solid);
}

/* Room Selector card in step 2 */
.room-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.room-select-card {
    border: 1px solid var(--border-color-solid);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 20px;
    background: #FAF9F6;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}
.room-select-card:hover {
    border-color: var(--primary-light);
    background: #FAFBFB;
}
.room-select-card.selected {
    border-color: var(--primary);
    background: #eef5f2;
    box-shadow: var(--shadow-sm);
}
.room-select-card .room-select-img {
    width: 140px;
    height: 100px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.room-select-card .room-select-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.room-select-card .room-select-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}
.room-select-card .room-select-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.room-select-card .room-select-prices {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}
.room-select-card .room-select-price-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}
.room-select-card .room-select-radio {
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.room-select-card .room-select-radio input[type="radio"] {
    accent-color: var(--primary);
    transform: scale(1.3);
}

/* Mobile-only elements */
.mobile-only {
    display: none !important;
}

/* Responsive Styles for Mobile Menu and Booking */

/* Navbar Toggler Button (Mobile) */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 6px;
    z-index: 1000;
}
.navbar-toggler:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-md);
        padding: 20px;
        border-top: 1px solid var(--border-color-solid);
        gap: 16px;
        z-index: 999;
    }
    .navbar-nav.active {
        display: flex;
        animation: slideDownMenu 0.3s ease;
    }
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .navbar-nav .nav-item a {
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-nav .nav-item:last-child a {
        border-bottom: none;
    }
    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Layouts stacking */
    .testimonials-grid,
    .route-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 600px) {
    .stepper-header {
        padding: 16px;
        margin-bottom: 30px;
        gap: 8px;
    }
    .step-indicator .step-text {
        display: none; /* Hide labels on small mobile to save space */
    }
    .step-indicator .step-num {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .step-line {
        top: -8px;
    }
}

@media (max-width: 576px) {
    #btn-nav-book {
        display: none !important; /* Hide nav button to prevent squeezing logo */
    }
    
    /* Step 2 Selection Card Mobile Overrides */
    .room-select-card {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .room-select-card .room-select-img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
    .room-select-card .room-select-radio {
        position: absolute;
        top: 24px;
        right: 24px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        padding: 6px;
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .room-select-card .room-select-radio input[type="radio"] {
        margin: 0;
    }
    
    /* Modern square 2-column Instagram layout for mobile gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item {
        aspect-ratio: 1;
    }
}

/* Admin Tabs Layout */
.admin-tab-bar .admin-tab-btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
}
.admin-tab-bar .admin-tab-btn:hover {
    color: var(--primary);
    background: rgba(27, 67, 50, 0.02);
}
.admin-tab-bar .admin-tab-btn.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    background: rgba(27, 67, 50, 0.05);
    font-weight: 700;
}
.admin-tab-content {
    display: none;
}
.admin-tab-content.active-content {
    display: block;
    animation: fadeInTab 0.3s ease;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Room Edit Form grid */
.settings-grid-stacked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 992px) {
    .settings-grid-stacked {
        grid-template-columns: 1fr;
    }
}

/* Room selector card sold out state */
.room-select-card.sold-out {
    opacity: 0.6;
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
}
.room-select-card.sold-out:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}
.room-select-card .sold-out-badge {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 4px;
    border: 1px solid #fecaca;
}

/* Floating Live Chat Widget */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: var(--font-body);
}
.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}
.chat-bubble:hover {
    transform: scale(1.08) rotate(5deg);
    background: var(--primary-dark);
}
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.chat-panel {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color-solid);
    overflow: hidden;
    flex-direction: column;
    z-index: 10001;
}
.chat-panel.active {
    display: flex;
    animation: slideUpChat 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUpChat {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-panel-header {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.chat-title {
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}
.chat-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}
.chat-panel-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
}
.chat-panel-close:hover {
    opacity: 1;
}
.chat-panel-quick-contacts {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color-solid);
    background: #FAFBFB;
}
.quick-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color-solid);
}
.quick-contact-btn.zalo {
    background: white;
    color: #0068ff;
}
.quick-contact-btn.zalo:hover {
    background: #f0f7ff;
    border-color: #0068ff;
}
.quick-contact-btn.phone {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}
.quick-contact-btn.phone:hover {
    background: var(--accent-dark);
}
.chat-messages-container {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f4f6f5;
}
.chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}
.chat-msg.system {
    align-self: center;
    background: #e2e8f0;
    color: #475569;
    text-align: center;
    max-width: 90%;
    font-size: 0.8rem;
}
.chat-msg.user {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}
.chat-msg.admin {
    align-self: flex-start;
    background: white;
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color-solid);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color-solid);
    display: flex;
    gap: 10px;
    background: white;
    align-items: center;
}
.chat-input-area input {
    flex-grow: 1;
    border: 1px solid var(--border-color-solid);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
}
.chat-input-area input:focus {
    border-color: var(--primary);
}
.chat-input-area button {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.chat-input-area button:hover {
    background: var(--primary-dark);
}

/* Admin Chat Workspace Styling */
.admin-chat-layout {
    font-family: var(--font-body);
}
.admin-chat-sessions-pane {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}
.chat-session-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color-solid);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-session-item:hover {
    background: #f1f5f3;
}
.chat-session-item.active {
    background: #eef5f2;
    border-left: 4px solid var(--primary);
}
.chat-session-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
}
.chat-session-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.chat-session-badge {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}
.admin-chat-layout .chat-msg.admin {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
    border: none;
}
.admin-chat-layout .chat-msg.user {
    align-self: flex-start;
    background: white;
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color-solid);
}

@media (max-width: 576px) {
    .chat-panel {
        width: calc(100vw - 40px);
        height: 420px;
        bottom: 70px;
    }
    .chat-widget-container {
        bottom: 20px;
        right: 20px;
    }
}

/* Interactive empty cells in scheduler */
.scheduler-table td.cell-free {
    transition: var(--transition-fast);
}
.scheduler-table td.cell-free:hover {
    background-color: rgba(27, 67, 50, 0.12) !important;
    color: var(--primary) !important;
}
.scheduler-table td.cell-free:hover i {
    opacity: 0.8 !important;
    transform: scale(1.3);
}


