/* assets/emanet.css */

/* Hesaplama Kartı */
.calc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    border-top: 5px solid #3b82f6; /* Mavi Şerit */
}

/* Başlıklar */
.section-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

/* Grid Yapısı */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Input Grupları */
.input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px 0;
}

.input-row label {
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
    flex: 1;
}

.input-row input, .input-row select {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-weight: 700;
    text-align: right;
    font-size: 1rem;
    transition: 0.3s;
}

/* ÖZEL RENKLİ INPUTLAR (Görseldeki Gibi) */

/* Sarı Alanlar (Giriş Yapılanlar) */
.input-yellow {
    background-color: #fef08a !important; /* Açık Sarı */
    color: #854d0e !important;
    border-color: #fde047 !important;
}
.input-yellow:focus {
    background-color: #fde047 !important;
    box-shadow: 0 0 0 3px rgba(253, 224, 71, 0.5);
}

/* Kırmızı Alanlar (Sonuç/Borç) */
.input-red {
    background-color: #fee2e2 !important; /* Açık Kırmızı */
    color: #991b1b !important;
    border-color: #fca5a5 !important;
}

/* Gri Alanlar (Bilgi/Ara Hesap) */
.input-gray {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    pointer-events: none; /* Tıklanamaz */
}

/* Büyük Sonuç Göstergesi */
.big-result {
    background: #1e293b;
    color: #4ade80; /* Neon Yeşil */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}
.big-result .label { font-size: 0.9rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.big-result .value { font-size: 2rem; font-weight: 800; }