/* portal.style.css v1.0.10 - Cleaned, organized, no hover effects */
:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --border: #cbd5e1;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sidebar variables */
    --sidebar-width: 240px;
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --dark-color: #1e293b;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    text-decoration: none;
}

body {
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    overflow-x: hidden;

}

.full-iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;

  }

/* Sidebar - Desktop Only */
.sidebar {
    display: none;
    width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--dark-color) 0%, #1a2530 100%);
    color: white;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-logo {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.sidebar-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    margin: 0;
}

.sidebar-user-info {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.sidebar-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.sidebar-nav-menu {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.sidebar-nav-menu li {
    margin: 5px 15px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-nav-menu a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    gap: 12px;
    font-size: 15px;
}

.sidebar-nav-menu a:hover,
.sidebar-nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-nav-menu i {
    width: 20px;
    text-align: center;
}

/* iOS Bottom Navigation - Mobile Only */
.ios-nav {
    display: none;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--gray);
    font-size: 12px;
    flex: 1;
    min-width: 0;
    padding: 0 6px;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active .nav-icon {
    background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
    color: var(--primary);
}

.nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.nav-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    word-break: break-word;
    font-weight: 500;
}

/* Header */
.header-banner {
    position: relative;
    min-height: 240px;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
                url('https://guest.gr8bnb.com/b94a8e71-95f0-48c4-8446-77809cf74a0d.png') center/cover;
    color: white;
    padding: 20px 0;
    margin-bottom: 24px;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    overflow: hidden;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    color: white;
    letter-spacing: -0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65%;
    word-break: break-word;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.guest-name {
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}

.guest-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 15px;
    flex-shrink: 0;
}

.header-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Weather */
.weather-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 20px;
    min-width: 0;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: #ffd700;
}

.weather-temp {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.weather-details {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.weather-loading {
    opacity: 0.7;
}

.weather-error {
    color: #ff6b6b;
}

/* Stay Status Indicator */
.stay-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-left: 15px;
}

.stay-status-indicator.upcoming {
    background: #dbeafe;
    color: #1d4ed8;
}

.stay-status-indicator.current {
    background: #d1fae5;
    color: #059669;
}

.stay-status-indicator.completed {
    background: #e5e7eb;
    color: #6b7280;
}

.stay-status-indicator.unlocked {
    background: #f0f9ff;
    color: #0369a1;
}

/* Stay Dates */
.stay-dates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: var(--radius);
    font-size: 14px;
    width: 100%;
    gap: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 4px;
}

.date-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 6px;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
}

.date-value {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    word-break: break-word;
}

/* Standalone Countdown Timer */
.countdown-standalone {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0px auto 25px auto;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1000;
    margin-left: auto;
    margin-right: calc(var(--sidebar-width) + ((100% - var(--sidebar-width) - 900px) / 2));
}

.countdown-standalone::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    margin-top: 20px;
}

.countdown-icon-standalone {
    font-size: 1.2rem;
    color: #8b5cf6;
    background: #f5f3ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-text-standalone {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    flex-shrink: 0;
}

.countdown-display-standalone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Courier New', monospace;
    background: #f8fafc;
    border-radius: 8px;
    padding: 5px 10px;
}

.countdown-unit-standalone {
    display: flex;
    align-items: baseline;
    min-width: 40px;
    text-align: center;
    justify-content: center;
}

.countdown-value-standalone {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

.countdown-label-standalone {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.countdown-separator-standalone {
    color: #cbd5e0;
    font-weight: 300;
    margin: 0 2px;
}

/* Priority Tasks Section */
.tasks-highlight {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 720px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;



    margin-right: auto;
    margin-left: auto;
}

.tasks-highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    right: 20px;
    height: 5px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 2.5px;



    margin-right: auto;
    margin-left: auto;
}

.tasks-highlight.unlocked::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tasks-header-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tasks-title-highlight {
    font-size: 24px;
    color: #1e293b;
}

.tasks-subtitle-highlight {
    color: #64748b;
    font-size: 16px;
    margin-top: 5px;
}

.tasks-pending-count-highlight {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.tasks-pending-count-highlight.upcoming {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.tasks-pending-count-highlight.current {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tasks-pending-count-highlight.completed {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.tasks-pending-count-highlight.unlocked {
    background: linear-gradient(135deg, #10b981, #059669);
}

.tasks-list-highlight {
    display: grid;
    gap: 15px;
}

.task-card-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.task-card-highlight:hover:not(.disabled) {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-card-highlight.completed {
    background: #f0fdf4;
    border-color: #d1fae5;
}

.task-card-highlight.rejected {
    background: #fef2f2;
    border-color: #fecaca;
}

.task-card-highlight.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f1f5f9;
}

.task-card-highlight.unlocked {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.task-card-highlight.rejected {
    background: #fef2f2;
    border-color: #fecaca;
}

.task-info-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.task-icon-highlight {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.task-card-highlight.completed .task-icon-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
}

.task-card-highlight.rejected .task-icon-highlight {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.task-card-highlight.disabled .task-icon-highlight {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

.task-card-highlight.unlocked .task-icon-highlight {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.task-details-highlight {
    flex: 1;
}

.task-name-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.task-card-highlight.disabled .task-name-highlight {
    color: #6b7280;
}

.task-card-highlight.unlocked .task-name-highlight {
    color: #0369a1;
}

.task-description-highlight {
    color: #64748b;
    font-size: 14px;
}

.task-card-highlight.disabled .task-description-highlight {
    color: #9ca3af;
}

.task-card-highlight.unlocked .task-description-highlight {
    color: #0c4a6e;
}

.task-status-highlight {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-status-highlight.pending {
    background: #fef3c7;
    color: #d97706;
}

.task-status-highlight.completed {
    background: #d1fae5;
    color: #059669;
}

.task-status-highlight.rejected {
  background: #fecaca;
  color: #dc2626;
}

.task-status-highlight.disabled {
    background: #e5e7eb;
    color: #6b7280;
}

.task-status-highlight.unlocked {
    background: #dbeafe;
    color: #1d4ed8;
}

/* Current Information Section */
.current-info-section {
    margin: 0 0 24px 0;
    position: relative;
    overflow: hidden;
}

.section-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.section-stage-indicator {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
    word-break: keep-all;
    border: 1px solid var(--border);
    display: none;
}

/* Carousel */
.info-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: white;
    border: 1px solid var(--border);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.carousel-slide {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    padding: 0;
    box-sizing: border-box;
}

.slide-content {
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.slide-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.slide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.slide-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.row-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 18px;
}

.row-content {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
}

.row-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.row-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Code Display */
.code-display-container {
    margin-top: 8px;
}
.button-display-container {
    margin-top: 8px;
}

.code-display, .button-display {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
    border: 1px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: inline-block;
    word-break: keep-all;
    min-width: 120px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.code-display.revealed, .button-display {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: var(--primary-dark);
    border-color: var(--primary);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.carousel-arrow {
    background: var(--primary-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--gray-light);
    color: var(--gray);
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    cursor: pointer;
    flex-shrink: 0;
    border: none;
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Quick Actions */
.quick-actions-section {
    margin: 32px 0;
    overflow-x: hidden;
}

.quick-actions-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: hidden;
}

.action-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    color: var(--dark);
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.action-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.action-label {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 15px 30px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-body {
    padding: 25px 30px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.modal-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.modal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.03);
}

.instructions-list {
    list-style: none;
    padding: 0;
}

.instructions-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.instructions-list li:last-child {
    border-bottom: none;
}

.instruction-icon {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-top: 3px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    display: block;
    border: 10px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.contact-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 5px;
}

.contact-value {
    color: #0f172a;
}

/* WiFi Modal Specific Styles */
.wifi-network-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.wifi-network-info {
    margin-bottom: 30px;
}

.wifi-network-container {
    margin-bottom: 25px;
}

.wifi-network-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.wifi-display-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    gap: 15px;
}

.wifi-network-name,
.wifi-network-password {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    word-break: break-all;
    margin: 0;
    flex: 1;
}

.wifi-network-password {
    color: #059669;
}

.wifi-copy-btn-box {
    background: #3b82f6;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.wifi-copy-btn-box:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.wifi-copy-btn-box:active {
    transform: translateY(0);
}

.wifi-copy-btn-box.copied {
    background: #10b981;
}

.wifi-copy-btn-box.copied i {
    transform: scale(0.9);
}

.wifi-tips-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.wifi-tips-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.wifi-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.wifi-tips-list li:last-child {
    margin-bottom: 0;
}

.tip-icon {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* WiFi Modal Specific Styles */
.wifi-network-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* QR Code Section */
.wifi-qr-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.qr-container {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.qr-code-placeholder {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    flex-shrink: 0;
}

.qr-code-placeholder canvas {
    border-radius: 8px;
}

.qr-loading {
    color: #6b7280;
    font-size: 48px;
    opacity: 0.3;
}

.qr-instructions {
    flex: 1;
}

.qr-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.qr-description {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.qr-platforms {
    display: flex;
    gap: 20px;
}

.qr-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.qr-platform i {
    font-size: 18px;
    width: 24px;
}

.qr-platform i.fa-apple {
    color: #000000;
}

.qr-platform i.fa-android {
    color: #3DDC84;
}

.wifi-network-info {
    margin-bottom: 30px;
}

.wifi-network-container {
    margin-bottom: 25px;
}

.wifi-network-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.wifi-display-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    gap: 15px;
}

.wifi-network-name,
.wifi-network-password {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    word-break: break-all;
    margin: 0;
    flex: 1;
}

.wifi-network-password {
    color: #059669;
}

.wifi-copy-btn-box {
    background: #3b82f6;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.wifi-copy-btn-box:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.wifi-copy-btn-box:active {
    transform: translateY(0);
}

.wifi-copy-btn-box.copied {
    background: #10b981;
}

.wifi-copy-btn-box.copied i {
    transform: scale(0.9);
}

.wifi-tips-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.wifi-tips-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.wifi-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.wifi-tips-list li:last-child {
    margin-bottom: 0;
}

.tip-icon {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Food Delivery Modal Styles */
.food-delivery-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.food-delivery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.food-delivery-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e5e7eb;
}

.food-delivery-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.food-delivery-title {
    flex: 1;
}

.delivery-service-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1f2937;
}

.delivery-service-tagline {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.food-delivery-content {
    padding: 20px;
}

.promo-code-section {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.promo-code-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.promo-code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.promo-code-value {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.promo-code-copy-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.promo-code-copy-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
}

.promo-code-copy-btn.copied {
    background: linear-gradient(135deg, #10b981, #059669);
}

.promo-code-description {
    font-size: 16px;
    color: #374151;
    margin-bottom: 10px;
}

.promo-instructions {
    background: #fef3c7;
    border-radius: 6px;
    padding: 12px;
    margin-top: 10px;
    font-size: 14px;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.promo-instructions i {
    color: #d97706;
    margin-right: 8px;
}

.delivery-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.delivery-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #4b5563;
}

.feature-icon {
    color: #10b981;
    margin-right: 12px;
    font-size: 16px;
}

.app-download-section {
    margin-top: 25px;
}

.delivery-app-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.wolt-btn {
    background: linear-gradient(135deg, #00aaff, #0066ff);
    color: white;
}

.wolt-btn:hover {
    background: linear-gradient(135deg, #0066ff, #0055cc);
    transform: translateY(-2px);
}

.foodora-btn {
    background: linear-gradient(135deg, #ff3366, #ff0033);
    color: white;
}

.foodora-btn:hover {
    background: linear-gradient(135deg, #ff0033, #cc0029);
    transform: translateY(-2px);
}

.app-download-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.app-store-btn, .google-play-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.app-store-btn {
    background: #000000;
    color: white;
}

.google-play-btn {
    background: #34a853;
    color: white;
}

.app-store-btn:hover, .google-play-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.food-intro-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #fbbf24;
}

.food-intro-text {
    margin: 0;
    color: #92400e;
    font-size: 16px;
    line-height: 1.5;
}

.food-tips-list {
    list-style: none;
    padding: 0;
}

.food-tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.5;
}

.recommendations-card {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #34d399;
}

.recommendations-text {
    margin: 0;
    color: #065f46;
    font-size: 15px;
    line-height: 1.5;
}

/* Kitchen Modal Styles */
.kitchen-intro-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
}

.kitchen-intro-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.kitchen-intro-text p {
    margin: 0;
    color: #0369a1;
    font-size: 16px;
    line-height: 1.5;
}

/* Appliance Card */
.appliance-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.appliance-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-bottom: 1px solid #fbbf24;
}

.appliance-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.appliance-title {
    flex: 1;
}

.appliance-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #92400e;
}

.appliance-model {
    margin: 0;
    color: #b45309;
    font-size: 14px;
}

.appliance-content {
    padding: 20px;
}

.appliance-instruction {
    margin-bottom: 25px;
}

.instruction-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}

.appliance-image-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    margin: 25px 0;
    border: 2px dashed #d1d5db;
}

.image-placeholder-content {
    color: #6b7280;
}

.image-placeholder-content i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #9ca3af;
}

.image-placeholder-content p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #4b5563;
}

.image-placeholder-content small {
    font-size: 14px;
    color: #9ca3af;
}

/* Safety Tips */
.safety-tips {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #fecaca;
}

.safety-title {
    font-size: 18px;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.safety-tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #7f1d1d;
}

.safety-icon {
    color: #dc2626;
    margin-right: 12px;
    font-size: 16px;
    margin-top: 2px;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.equipment-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.equipment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.equipment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.equipment-info {
    flex: 1;
}

.equipment-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1f2937;
}

.equipment-desc {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

/* Essentials Grid */
.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.essentials-column {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.essentials-category {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

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

.essentials-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 14px;
}

.essentials-check {
    color: #10b981;
    margin-right: 10px;
    font-size: 14px;
    margin-top: 2px;
}

/* Kitchen Tips */
.kitchen-tips-card {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
}

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

.kitchen-tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #065f46;
    line-height: 1.5;
}

.kitchen-tips-list .tip-icon {
    color: #059669;
    margin-right: 12px;
    font-size: 16px;
    margin-top: 2px;
}

/* Support Actions */
.support-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.support-action-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.support-action-btn:first-child {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.support-action-btn:last-child {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.support-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .essentials-grid {
        grid-template-columns: 1fr;
    }

    .support-actions {
        flex-direction: column;
    }

    .instruction-step {
        flex-direction: column;
        gap: 10px;
    }

    .step-number {
        align-self: flex-start;
    }
}

/* Cleaning Modal Styles */
.cleaning-intro-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
}

.cleaning-intro-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.cleaning-intro-text {
    flex: 1;
}

.cleaning-intro-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #0369a1;
}

.cleaning-intro-desc {
    margin: 0;
    color: #0c4a6e;
    font-size: 15px;
    opacity: 0.9;
}

/* Cleaning Card */
.cleaning-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cleaning-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-bottom: 1px solid #a7f3d0;
}

.cleaning-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
}

.cleaning-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #065f46;
}

.cleaning-card-content {
    padding: 20px;
}

.cleaning-instruction {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cleaning-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}

.step-content strong {
    color: #1f2937;
}

.cleaning-tip {
    background: #fffbeb;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fde68a;
    margin-top: 10px;
}

.cleaning-tip .tip-icon {
    color: #d97706;
    font-size: 16px;
}

.cleaning-tip span {
    color: #92400e;
    font-size: 14px;
}

/* Cleaning Equipment Cards */
.cleaning-equipment-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.cleaning-equipment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.equipment-image-container {
    flex-shrink: 0;
}

.equipment-image-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.cleaning-equipment-info {
    flex: 1;
}

.equipment-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1f2937;
}

.equipment-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
}

.equipment-location i {
    color: #3b82f6;
}

.equipment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #4b5563;
}

.equipment-features i {
    color: #10b981;
    font-size: 12px;
}

.equipment-instruction {
    background: #f8fafc;
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.equipment-instruction i {
    color: #3b82f6;
    margin-right: 6px;
}

/* Supplies Grid */
.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.supply-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.2s;
}

.supply-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.supply-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #1f2937;
}

.supply-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    display: block;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card.premium-card {
    border-color: #fbbf24;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

.service-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-bottom: 1px solid #fbbf24;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.service-card-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #92400e;
}

.service-price {
    background: #f8fafc;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #e5e7eb;
}

.service-card-content {
    padding: 20px;
}

.service-description {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.service-description p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}

.service-details-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.feature-check {
    color: #10b981;
    font-size: 16px;
}

.service-features-list span {
    color: #374151;
    font-size: 14px;
}

/* Service Booking */
.service-booking {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 14px;
}

.info-item i {
    color: #3b82f6;
    font-size: 16px;
}

.info-item strong {
    color: #1f2937;
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.booking-btn, .info-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.booking-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
}

.info-btn {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.info-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Cleaning Tips */
.cleaning-tips-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fbbf24;
}

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

.cleaning-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.cleaning-tips-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cleaning-tips-list .tip-icon {
    color: #d97706;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cleaning-tips-list li div {
    color: #92400e;
    line-height: 1.5;
}

.cleaning-tips-list li strong {
    color: #78350f;
}

/* Support Card */
.support-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #bae6fd;
}

.support-card-header {
    margin-bottom: 15px;
}

.support-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #0369a1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-card-content p {
    color: #0c4a6e;
    margin: 0 0 15px 0;
    font-size: 15px;
}

.support-actions {
    display: flex;
    gap: 10px;
}

.support-action {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.support-action {
    background: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.support-action:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.support-action.emergency {
    background: white;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.support-action.emergency:hover {
    background: #ef4444;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cleaning-equipment-card {
        flex-direction: column;
    }

    .supplies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-actions,
    .support-actions {
        flex-direction: column;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .supplies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-price {
        align-self: flex-start;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .qr-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .qr-code-placeholder {
        width: 180px;
        height: 180px;
    }

    .qr-platforms {
        justify-content: center;
    }

    .wifi-display-box {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .wifi-network-name,
    .wifi-network-password {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .wifi-copy-btn-box {
        width: 100%;
        height: 50px;
    }
}

/* Get Around Modal Styles */
.transport-info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.transport-description {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* App Card Styles */
.app-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.app-description {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e293b;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.app-download-btn:hover {
    background: #334155;
    transform: translateY(-2px);
}

.app-download-btn i {
    font-size: 18px;
}

/* Ride Services Grid */
.ride-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ride-service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.ride-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ride-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.ride-service-info {
    flex: 1;
}

.ride-service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 4px;
}

.ride-service-desc {
    color: #64748b;
    font-size: 13px;
}

/* Parking Options Grid */
.parking-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.parking-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease;
}

.parking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.parking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.parking-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.parking-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.parking-content {
    padding: 20px;
}

.parking-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.parking-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.parking-map-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.parking-map-btn i {
    font-size: 16px;
}

/* Tips Card */
.tips-card {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #a7f3d0;
}

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

.transport-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #065f46;
    font-size: 15px;
}

.transport-tips-list li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .app-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-download-btn {
        flex: 1;
        justify-content: center;
    }

    .ride-services-grid {
        grid-template-columns: 1fr;
    }

    .parking-options-grid {
        grid-template-columns: 1fr;
    }

    .parking-header {
        padding: 15px;
    }

    .parking-content {
        padding: 15px;
    }
}

/* Page Blur Overlay */
.page-blur-overlay {
    filter: blur(8px);
    pointer-events: none;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.page-blur-overlay.disabled {
    filter: none;
    pointer-events: auto;
    opacity: 1;
}

/* Unlocked Banner */
.unlocked-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.unlocked-banner i {
    font-size: 1.2rem;
}

/* Error Display */
.error-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Amenities Modal Specific Styles */
.location-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.location-details {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-icon {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.location-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.location-city {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Navigation Apps Grid */
.navigation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.nav-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.nav-app-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: white;
    font-size: 1.5rem;
}

.nav-app-icon.fa-apple {
    background: #000000;
}

.nav-app-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    text-align: center;
}

/* Ride Services Section */
.ride-services-section {
    margin-top: 20px;
}

.ride-services-title {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 15px;
}

.ride-service-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ride-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

.ride-service-info {
    flex: 1;
}

.ride-service-name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.ride-service-desc {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
}

.ride-service-link {
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ride-service-link:hover {
    background: #2563eb;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .nav-app-card {
        padding: 12px 8px;
    }

    .nav-app-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .nav-app-label {
        font-size: 0.8rem;
    }

    .ride-service-card {
        padding: 12px;
    }

    .ride-service-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .ride-service-link {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navigation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .nav-app-card {
        padding: 10px 6px;
    }

    .nav-app-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .nav-app-label {
        font-size: 0.75rem;
    }

    .location-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .location-icon {
        margin-top: 0;
    }
}

.error-icon {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 20px;
}

.error-title {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 15px;
}

.error-message {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 30px;
}

.retry-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.retry-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.task-card-highlight.completed {
    animation: fadeIn 0.5s ease;
}

.task-card-highlight.rejected {
    animation: fadeIn 0.5s ease;
}
.code-display.revealed {
    animation: pulse 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1134px) {
    body {
        padding-bottom: 80px;
    }

    .container {
        padding: 0 14px;
        margin: 0 auto;
        max-width: 100%;
    }



    .full-iframe {
        width: 100vw;
        height: calc(100vh - 106px);
        border: none;
        display: block;
        margin: 0 auto;

      }

    .sidebar {
        display: none !important;
    }

    .ios-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 10px 0;
        z-index: 1000;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .ios-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 8px 0;
        text-decoration: none;
        color: #8e8e93;
        transition: all 0.2s ease;
        position: relative;
        border-radius: 10px;
        margin: 0 5px;
    }

    .ios-nav .nav-item.active {
        color: #007aff;
    }

    .ios-nav .nav-icon {
        font-size: 22px;
        margin-bottom: 4px;
        transition: transform 0.3s ease;
    }

    .ios-nav .nav-item.active .nav-icon {
        transform: translateY(-2px);
    }

    .ios-nav .nav-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .bottom-nav {
        display: none;
    }

    /* Header adjustments */
    .header-banner {
        min-height: 260px;
        padding: 16px 0;
    }

    .logo {
        font-size: 20px;
        max-width: 60%;
    }

    .guest-name {
        font-size: 14px;
        max-width: 70px;
    }

    .guest-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .weather-display {
        width: 50%;
        justify-content: flex-start;
        padding: 14px;
    }

    .weather-temp {
        font-size: 18px;
    }

    .weather-details {
        font-size: 11px;
    }

    .stay-dates {
        padding: 14px;
        font-size: 13px;
    }

    .date-label {
        font-size: 10px;
    }

    .date-value {
        font-size: 14px;
    }

    /* Countdown adjustments */
    .countdown-standalone {
        padding: 12px 15px;
        margin: 0px auto 20px auto;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .countdown-display-standalone {
        padding: 4px 8px;
    }

    .countdown-unit-standalone {
        min-width: 35px;
    }

    .countdown-value-standalone {
        font-size: 1rem;
    }

    .countdown-text-standalone {
        font-size: 0.9rem;
    }

    /* Tasks adjustments */
    .tasks-highlight {
        padding: 20px;
        margin: 20px auto;




        margin-right: auto;
        margin-left: auto;
    }

    .tasks-header-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .task-card-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .task-status-highlight {
        align-self: flex-end;
    }

    .stay-status-indicator {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Section adjustments */
    .section-title {
        font-size: 18px;
    }

    .section-stage-indicator {
        font-size: 12px;
        padding: 5px 12px;
        display: none;
    }

    .slide-content {
        padding: 20px;
        min-height: 260px;
        gap: 16px;
    }

    .slide-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slide-title {
        font-size: 17px;
    }

    .info-row {
        gap: 12px;
        padding-bottom: 14px;
    }

    .row-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .row-title {
        font-size: 15px;
    }

    .row-description {
        font-size: 13px;
    }

    .code-display, .button-display {
        font-size: 16px;
        padding: 9px 14px;
        letter-spacing: 2px;
        min-width: 110px;
    }

    .carousel-nav {
        padding: 16px 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .quick-actions-grid {
        gap: 12px;
    }

    .action-card {
        padding: 20px 10px;
    }

    .action-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .action-label {
        font-size: 14px;
    }

    /* Modal adjustments */
    .modal-content {
        max-height: 85vh;
    }

    .modal-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1135px) {
    .sidebar {
        display: block;
    }


    .container {
        width: calc(100% - var(--sidebar-width));
        margin-right: auto;
        padding: 0 24px;
        max-width: 900px;
        margin-left: calc(var(--sidebar-width) + ((100% - var(--sidebar-width) - 900px) / 2))
    }


        .full-iframe {
            width: calc(100vw - var(--sidebar-width));
            height: 100vh;
            border: none;
            display: block;
            margin: 0;
            margin-left: calc(var(--sidebar-width))

          }


    .header-banner {
        width: 100%;
    }

    .tasks-highlight {
        max-width: 720px;
        margin: 30px auto;


        margin-right: auto;
        margin-left: auto;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ios-nav {
        display: none;
    }

    .bottom-nav {
        display: none;
    }
}
