.sunrise-header {
        background: rgb(83, 104, 5);
        color: white;
        padding: 30px 20px;
        border-radius: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .sunrise-header h1 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
    }
    
    .sunrise-header h1 i {
        color: #fef3c7;
        margin-right: 15px;
    }
    
    .sunrise-header .subtitle {
        color: #fff;
        margin-top: 12px;
        font-size: 18px;
        opacity: 0.9;
    }
    
    .location-selector {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    
    .search-container {
        position: relative;
        flex: 1;
        min-width: 250px;
    }
    
    #city-search {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 16px;
    }
    
    #city-search:focus {
        outline: none;
        border-color: #f59e0b;
        box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    }
    
    .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
    }
    
    .search-result-item {
        padding: 12px 15px;
        cursor: pointer;
        border-bottom: 1px solid #e2e8f0;
        transition: background 0.2s;
    }
    
    .search-result-item:hover {
        background: #f1f5f9;
    }
    
    .search-loading, .no-results {
        padding: 15px;
        text-align: center;
        color: #64748b;
    }
    
    .sunrise-card {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        border: 1px solid #e2e8f0;
    }
    
    .sunrise-badge {
        background: #fef3c7;
        color: #f59e0b;
        padding: 8px 20px;
        border-radius: 30px;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 25px;
    }
    
    .sunrise-time-main {
        font-size: 48px;
        font-weight: 700;
        color: #1e293b;
        margin: 20px 0;
        line-height: 1.3;
        text-align: center;
    }
    
    .sunrise-time-main span {
        color: #f59e0b;
    }
    
    .time-desc {
        color: #64748b;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.6;
        text-align: center;
    }
    
    .sun-times-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 40px 0;
    }
    
    .sun-time-card {
        background: #f8fafc;
        padding: 25px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .sun-time-card.sunrise {
        border-top: 4px solid #f59e0b;
    }
    
    .sun-time-card.sunset {
        border-top: 4px solid #f97316;
    }
    
    .sun-time-label {
        font-size: 18px;
        color: #64748b;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .sun-time-label i {
        font-size: 24px;
    }
    
    .sun-time-label.sunrise i {
        color: #f59e0b;
    }
    
    .sun-time-label.sunset i {
        color: #f97316;
    }
    
    .sun-time-value {
        font-size: 42px;
        font-weight: 700;
        color: #1e293b;
        font-family: 'Courier New', monospace;
    }
    
    .day-length-card {
        background: #f8fafc;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        margin: 20px 0;
        border: 1px dashed #f59e0b;
    }
    
    .day-length-label {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 10px;
    }
    
    .day-length-value {
        font-size: 32px;
        font-weight: 700;
        color: #f59e0b;
    }
    
    .schedule-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 30px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .schedule-table th {
        background: rgb(83, 104, 5);
        color: white;
        padding: 15px;
        font-weight: 600;
    }
    
    .schedule-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .schedule-table tr:hover {
        background: #f8fafc;
    }
    
    .schedule-table .today-row {
        background: #fef3c7;
        font-weight: 600;
    }
    
    .weekly-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
        margin: 30px 0;
    }
    
    .weekly-item {
        background: #f8fafc;
        padding: 15px;
        border-radius: 12px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .weekly-item.today {
        background: #fef3c7;
        border: 2px solid #f59e0b;
    }
    
    .weekly-day {
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }
    
    .weekly-date {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 10px;
    }
    
    .weekly-sunrise {
        color: #f59e0b;
        font-weight: 600;
        font-size: 16px;
    }
    
    .weekly-sunset {
        color: #f97316;
        font-weight: 600;
        font-size: 16px;
        margin-top: 5px;
    }
    
    .info-section {
        background: #f8fafc;
        border-radius: 16px;
        padding: 30px;
        margin: 30px 0;
    }
    
    .faq-item {
        margin-bottom: 25px;
    }
    
    .faq-item h3 {
        color: #1e293b;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .faq-item h3 i {
        color: #f59e0b;
        margin-right: 10px;
    }
    
    .faq-item p {
        color: #475569;
        line-height: 1.6;
        margin-left: 35px;
        margin-right: 35px;
    }
    
    .loading-spinner {
        display: inline-block;
        width: 40px;
        height: 40px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #f59e0b;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    @media (max-width: 768px) {
        .sun-times-grid {
            grid-template-columns: 1fr;
        }
        
        .weekly-grid {
            grid-template-columns: repeat(7, 1fr);
            overflow-x: auto;
        }
        
        .sunrise-time-main {
            font-size: 32px;
        }
    }