/* JetLagPro Demo - iOS App Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f2f2f7;
    color: #1d1d1f;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden; /* Prevent body scroll */
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Back Button Container */
.back-button-container {
    text-align: left;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007AFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: rgba(0, 122, 255, 0.1);
}

/* Phone Frame */
.phone-frame {
    max-width: 375px;
    width: 100%;
    margin: 20px auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

/* iOS App Container */
.app-container {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Home Tab Header */
.home-header {
    background: linear-gradient(135deg, #007AFF, #007AFF 80%);
    height: 80px;
    margin: -12px -12px 0 -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.home-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Main Content Area */
.app-main {
    flex: 1;
    overflow-y: auto;
    background: #f2f2f7;
    padding-bottom: 83px; /* Space for tab bar */
    position: relative;
}

@media (max-width: 360px) {
    .app-main {
        padding-bottom: 70px; /* Smaller space for mobile tab bar */
    }
}

/* Tab Content */
.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: block;
}

.content-container {
    padding: 12px;
}

/* Section Styles */
.status-section,
.instructions-section,
.airport-section,
.point-section,
.schedule-section,
.info-section,
.notifications-section,
.stimulation-section {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.section-header:hover {
    background: #e9ecef;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1d1d1f;
}

.bullet {
    color: #007AFF;
    font-weight: bold;
    font-size: 16px;
}

.chevron {
    color: #007AFF;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.section-content {
    display: none;
    padding: 12px 16px;
    background: #ffffff;
}

/* Status Items */
.status-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    padding-left: 20px;
}

.status-text.success {
    color: #34c759;
}

.status-text.secondary {
    color: #8e8e93;
}

/* Instruction Items */
.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.instruction-text {
    color: #1d1d1f;
    font-size: 14px;
    line-height: 1.3;
}

/* Airport Search */
.airport-search {
    position: relative;
    margin-bottom: 16px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    font-size: 16px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    border-color: #007AFF;
}

.search-icon {
    position: absolute;
    right: 12px;
    color: #8e8e93;
    font-size: 16px;
}

.airport-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d1d6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.airport-result {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f2f7;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.airport-result:hover {
    background: #f2f2f7;
}

.airport-result:last-child {
    border-bottom: none;
}

.airport-code {
    font-weight: 600;
    color: #007AFF;
    font-size: 16px;
}

.airport-details {
    color: #8e8e93;
    font-size: 14px;
    margin-top: 2px;
}

.selected-airport {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.airport-info h4 {
    color: #1d1d1f;
    margin-bottom: 4px;
}

.airport-info p {
    color: #8e8e93;
    font-size: 14px;
    margin-bottom: 2px;
}

/* Point Display */
.point-display {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.point-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.point-number {
    background: #007AFF;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.point-names h4 {
    color: #1d1d1f;
    margin-bottom: 2px;
}

.point-names p {
    color: #8e8e93;
    font-size: 14px;
}

.point-content {
    padding: 16px;
}

.point-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-group h5 {
    color: #1d1d1f;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-group p {
    color: #3a3a3c;
    font-size: 15px;
    line-height: 1.4;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.schedule-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.schedule-item.active {
    background: #e3f2fd;
    border-color: #007AFF;
}

.schedule-time {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 14px;
    margin-bottom: 4px;
}

.schedule-point {
    color: #8e8e93;
    font-size: 12px;
    line-height: 1.2;
}

/* Download CTA */
.download-cta {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    padding: 24px 16px;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
}

.cta-content h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.cta-content p {
    margin-bottom: 16px;
    opacity: 0.9;
    font-size: 15px;
}

.btn-download {
    display: inline-block;
    background: #ffffff;
    color: #007AFF;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-download:hover {
    background: #f2f2f7;
    transform: translateY(-1px);
}

/* Info Section */
.info-section p {
    color: #3a3a3c;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Tab Bar */
.tab-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: #ffffff;
    border-top: 1px solid #d1d1d6;
    height: 83px;
    padding-bottom: 20px; /* Safe area for home indicator */
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #8e8e93;
}

.tab-item:hover {
    background: #f2f2f7;
}

.tab-item.active {
    color: #007AFF;
}

.tab-item.active .tab-icon {
    transform: scale(1.1);
}

.tab-icon {
    font-size: 24px;
    transition: transform 0.2s ease;
}

.tab-label {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 8px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .phone-frame {
        margin: 2px auto;
        padding: 12px;
        border-radius: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .app-container {
        height: 90vh;
        height: 90dvh; /* Dynamic viewport height for mobile */
        max-height: none;
        border-radius: 25px;
        flex: 1;
    }
    
    .phone-frame::before {
        width: 50px;
        height: 3px;
        top: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 4px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .phone-frame {
        margin: 0 auto;
        padding: 6px;
        border-radius: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .app-container {
        height: 92vh;
        height: 92dvh; /* Dynamic viewport height for mobile */
        max-height: none;
        border-radius: 20px;
        flex: 1;
    }
    
    .phone-frame::before {
        width: 40px;
        height: 2px;
        top: 10px;
    }
}

@media (max-width: 360px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-bar {
        padding: 4px 0 12px 0;
        height: 70px;
    }
    
    .tab-icon {
        font-size: 20px;
    }
    
    .tab-label {
        font-size: 9px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #ffffff;
    }
    
    .app-container {
        background: #1c1c1e;
    }
    
    .section-header {
        background: #2c2c2e;
        border-bottom-color: #38383a;
    }
    
    .section-header:hover {
        background: #38383a;
    }
    
    .status-section,
    .instructions-section,
    .airport-section,
    .point-section,
    .schedule-section,
    .info-section {
        background: #2c2c2e;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .section-content {
        background: #2c2c2e;
    }
    
    .instruction-text,
    .tip-text,
    .notification-text {
        color: #ffffff;
    }
    
    .search-input {
        background: #2c2c2e;
        border-color: #38383a;
        color: #ffffff;
    }
    
    .airport-results {
        background: #2c2c2e;
        border-color: #38383a;
    }
    
    .airport-result:hover {
        background: #38383a;
    }
    
    .selected-airport {
        background: #38383a;
    }
    
    .point-display {
        background: #2c2c2e;
    }
    
    .point-header {
        background: #38383a;
        border-bottom-color: #48484a;
    }
    
    .schedule-item {
        background: #38383a;
    }
    
    .schedule-item.active {
        background: #1e3a5f;
    }
    
    .tab-bar {
        background: #2c2c2e;
        border-top-color: #38383a;
    }
    
    .tab-item:hover {
        background: #38383a;
    }
} 

/* Journey Tab Styles */
.journey-header {
    background: linear-gradient(135deg, #007AFF, #007AFF 80%);
    height: 80px;
    margin: 0 -12px 0 -12px;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}

.destination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.destination-status {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 2px;
}

.destination-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.end-journey-button {
    position: absolute;
    top: 8px;
    right: 16px;
    background: rgba(255, 0, 0, 0.4);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.end-journey-button:hover {
    background: rgba(255, 0, 0, 0.6);
}

.journey-content {
    flex: 1;
    overflow-y: auto;
    background: #f2f2f7;
    padding-bottom: 83px; /* Space for tab bar */
}

.points-list {
    padding: 8px 16px 16px 16px;
}

.point-card {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.point-card.current {
    border-color: #34c759;
    border: 2px solid #34c759;
}

.point-card.completed::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    background: #34c759;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

.point-header {
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    transition: background-color 0.2s ease;
}

.point-header:hover {
    background: #f8f9fa;
}

.point-stimulation-text {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: #1d1d1f;
    text-align: left;
    line-height: 1.0;
    padding: 0 0 0 4px;
    min-width: 0;
}

.point-chevron {
    color: #8e8e93;
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.point-card.expanded .point-chevron {
    transform: rotate(180deg);
}

.point-content {
    display: none;
    padding: 16px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    overflow: hidden;
}

.point-card.expanded .point-content {
    display: block;
}

.point-media {
    display: grid;
    grid-template-columns: 130px 130px;
    gap: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.point-image {
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.point-video {
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.point-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.point-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.point-detail-title {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 15px;
}

.point-detail-content {
    color: #3a3a3c;
    font-size: 15px;
    line-height: 1.4;
}

.mark-stimulated-button {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.mark-stimulated-btn {
    background: transparent;
    border: 2px solid #007AFF;
    color: #007AFF;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mark-stimulated-btn:hover {
    background: #007AFF;
    color: #ffffff;
}

.mark-stimulated-btn.completed {
    border-color: #34c759;
    color: #34c759;
    cursor: default;
}

.mark-stimulated-btn.completed:hover {
    background: transparent;
    color: #34c759;
}

/* Divider between points */
.point-divider {
    height: 1px;
    background: #e9ecef;
    margin: 0 16px;
}

/* Responsive adjustments for journey */
@media (max-width: 480px) {
    .point-media {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        overflow: hidden;
    }
    
    .point-image,
    .point-video {
        width: 100%;
        height: 120px;
        overflow: hidden;
        border-radius: 10px;
        position: relative;
    }
    
    .point-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        max-width: 100%;
        max-height: 100%;
        display: block;
    }
} 

/* Main Instructions */
.main-instructions {
    margin-bottom: 12px;
}

.main-instructions .instruction-item {
    margin-bottom: 6px;
}

.main-instructions .instruction-text {
    font-size: 14px;
    line-height: 1.3;
}

/* Stimulation Section */
.stimulation-section {
    margin-bottom: 12px;
}

.stimulation-section .section-content {
    padding: 12px 16px;
}

.stimulation-section p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.3;
    color: #1d1d1f;
}

.stimulation-section h4 {
    margin: 12px 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
    padding-left: 20px;
}

.tip-text {
    color: #1d1d1f;
    font-size: 14px;
    line-height: 1.3;
}

/* Final Instructions */
.final-instructions {
    margin-bottom: 12px;
}

.final-instructions .instruction-item {
    margin-bottom: 6px;
}

.final-instructions .instruction-text {
    color: #1d1d1f;
    font-size: 16px;
    line-height: 1.4;
}

/* Survey Code Section */
.survey-code-section {
    margin-top: 20px;
}

.survey-code-section .section-content {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007AFF;
}

.survey-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.survey-code-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.code-container {
    flex: 1;
    background: #f1f3f4;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.survey-code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: 1px;
}

.copy-button {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-button:hover {
    background: #0056CC;
}

.survey-links {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.survey-button,
.research-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007AFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
    flex: 1;
    justify-content: center;
}

.survey-button:hover,
.research-button:hover {
    background: rgba(0, 122, 255, 0.1);
}

.link-icon,
.research-icon {
    font-size: 12px;
} 

/* Notifications Section */
.notifications-section {
    margin-bottom: 12px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.notification-text {
    color: #3a3a3c;
    font-size: 14px;
    line-height: 1.3;
}

.notification-text.success {
    color: #34c759;
} 

/* Destination Tab */
.destination-header {
    background: linear-gradient(135deg, #007AFF, #007AFF 80%);
    height: 120px;
    margin: -12px -12px 0 -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 4px 0;
    align-items: flex-start;
}

.destination-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    width: 100%;
    flex: 1 1 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    width: 100%;
    flex: 1 1 auto;
}

.search-icon {
    color: #8e8e93;
    font-size: 16px;
    margin-right: 8px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1d1d1f;
    background: transparent;
    padding: 12px 0 12px 4px;
}

.search-input::placeholder {
    color: #8e8e93;
    text-align: left;
}

.clear-button {
    color: #8e8e93;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.clear-button:hover {
    background-color: rgba(142, 142, 147, 0.1);
}

.destination-content {
    background: #f2f2f7;
    min-height: 400px;
    position: relative;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 17px;
    font-weight: 600;
    color: #8e8e93;
}

/* Search Results */
.search-results {
    padding: 8px 0;
}

.airport-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f7;
    cursor: pointer;
    transition: background-color 0.2s;
}

.airport-result:hover {
    background-color: #f8f9fa;
}

.airport-info {
    flex: 1;
}

.airport-name {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
    line-height: 1.2;
}

.airport-location {
    font-size: 13px;
    color: #8e8e93;
}

.airport-code {
    font-size: 13px;
    color: #8e8e93;
    font-weight: 500;
}

/* Recent Destinations */
.recent-destinations {
    padding: 20px 0 0 0;
}

.recent-header {
    padding: 0 16px 8px 16px;
}

.recent-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #8e8e93;
    margin: 0;
    text-align: center;
}

.recent-list {
    padding: 0 0 16px 0;
}

.clear-recent-button {
    padding: 16px;
    border-top: 1px solid #f2f2f7;
}

.clear-recent-button button {
    width: 100%;
    background: none;
    border: none;
    color: #ff3b30;
    font-size: 17px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.clear-recent-button button:hover {
    background-color: rgba(255, 59, 48, 0.1);
} 

/* Info Tab */
.info-header {
    background: linear-gradient(135deg, #007AFF, #007AFF 80%);
    height: 80px;
    margin: -12px -12px 0 -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.info-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* Info Section Styles */
.info-section {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-section p {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #1d1d1f;
}

.info-section h4 {
    margin: 16px 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.point-text {
    flex: 1;
    line-height: 1.4;
    color: #1d1d1f;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.tip-text {
    flex: 1;
    line-height: 1.4;
    color: #1d1d1f;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 12px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #007AFF;
}

.question-text {
    flex: 1;
    font-weight: 500;
    color: #1d1d1f;
}

.faq-chevron {
    color: #007AFF;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 8px 0 0 24px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.5;
} 