/* dagpenger-specific.css - NAV Dagpenger-spesifikk styling */

/* NAV-specifik gradient (blå/türkis som NAV sine farger) */
body {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 25%, #0891b2 50%, #0c4a6e 75%, #164e63 100%);
}

.calculator-card {
    border: 2px solid rgba(14, 165, 233, 0.3);
}

/* NAV info box */
.nav-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #0ea5e9;
}

.nav-info-box h3 {
    color: #0c4a6e;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: center;
}

.nav-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #0ea5e9;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-weight: 700;
    color: #0c4a6e;
    font-size: 16px;
}

/* Section headers */
.section-header {
    background: rgba(14, 165, 233, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 25px 0 15px 0;
    font-weight: 600;
    color: #0c4a6e;
    border-left: 4px solid #0ea5e9;
    font-size: 16px;
}

/* Results styling */
.results {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid #0ea5e9;
}

.result-highlight {
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .result-highlight {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.highlight-item {
    text-align: center;
}

.highlight-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 500;
}

.highlight-value {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #0c4a6e;
}

.result-breakdown {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
}

/* Eligibility check */
.eligibility-check {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.eligibility-check h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* NAV-spesifikke høydepunkter */
.calculate-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0891b2 100%);
}

.calculate-btn:hover {
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

input[type="number"]:focus, select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.info-note {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* NAV unique content styling */
.nav-unique-content h3 {
    color: #0c4a6e;
}

.nav-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.nav-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
    text-align: center;
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-3px);
}

.nav-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-stats {
        grid-template-columns: 1fr;
    }
    
    .nav-overview {
        grid-template-columns: 1fr;
    }
    
    .highlight-value {
        font-size: 1.5em;
    }
}