/* energy-specific.css - Energi-spesifikk styling */

/* Energi-specifik gradient (gul/grønn for sol/miljø-tema) */
body {
    background: linear-gradient(135deg, #fbbf24 0%, #22c55e 25%, #16a34a 75%, #15803d 100%);
}

.calculator-card {
    border: 2px solid rgba(251, 191, 36, 0.3);
}

/* Energi-spesifikke resultat-bokser */
.results {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-left: 5px solid #f59e0b;
}

.breakdown {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.breakdown h3 {
    color: #d97706;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.05);
}

.savings-item:last-child {
    border-bottom: none;
}

.payback-info {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    color: #16a34a;
}

.section-header {
    background: rgba(251, 191, 36, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 20px 0 15px 0;
    font-weight: 600;
    color: #d97706;
    border-left: 4px solid #f59e0b;
}

/* Energi-spesifikke høydepunkter */
.calculate-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.calculate-btn:hover {
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

input[type="number"]:focus, select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.info-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Spesielle energy-elementer */
.solar-panel-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.energy-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    text-align: center;
}

.energy-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.savings-highlight {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}