/* Ay Evresi Hesaplama Aracı Stilleri */
.ay-evresi {
    --primary-color: #6c5ce7;
    --secondary-color: #a8a4e6;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-color: rgba(0,0,0,0.1);
    --form-border: #2d3436;
    --info-bg: #e3f2fd;
    --info-border: #2196f3;
    
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    max-width: 1000px !important;
    margin: 0 auto;
    padding: 2rem;
}

/* Başlık Stili */
.ay-evresi .hesaplama-baslik {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.ay-evresi .hesaplama-baslik i {
    font-size: 2rem;
    color: var(--primary-color);
}

.ay-evresi .hesaplama-baslik h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Bilgi Kutusu */
.ay-evresi .bilgi-kutusu {
    background: var(--info-bg);
    border: 2px solid var(--info-border);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.ay-evresi .bilgi-kutusu i {
    font-size: 1.8rem;
    color: var(--info-border);
    margin-top: 0.2rem;
}

.ay-evresi .bilgi-kutusu p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a237e;
}

/* Form Elemanları */
.ay-evresi .form-group {
    margin-bottom: 2rem;
    width: 100%;
}

.ay-evresi .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--form-border);
}

.ay-evresi .form-group label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ay-evresi input[type="date"],
.ay-evresi select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--form-border);
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ay-evresi input[type="date"]:focus,
.ay-evresi select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}

/* Hesapla Butonu */
.ay-evresi .hesapla-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ay-evresi .hesapla-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* Sonuçlar */
.ay-evresi .sonuclar {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.ay-evresi .sonuc-baslik {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ay-evresi .sonuc-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

/* Bilgi Kartları */
.ay-evresi .bilgi-kartlari {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ay-evresi .kart {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.ay-evresi .kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.ay-evresi .kart i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.ay-evresi .kart h4 {
    color: var(--text-color);
    margin: 0.8rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.ay-evresi .kart p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Dipnot */
.ay-evresi .dipnot {
    background: #f3f0ff;
    border: 1px solid #e6e0ff;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ay-evresi .dipnot i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Yardımcı Sınıflar */
.hidden {
    display: none !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .ay-evresi {
        padding: 1.5rem;
    }

    .ay-evresi .form-group {
        margin-bottom: 1.5rem;
    }

    .ay-evresi .bilgi-kartlari {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ay-evresi .kart {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ay-evresi {
        padding: 1rem;
    }

    .ay-evresi .bilgi-kutusu {
        padding: 1rem;
    }

    .ay-evresi .form-group label {
        font-size: 1rem;
    }

    .ay-evresi input[type="date"],
    .ay-evresi select {
        padding: 0.8rem;
        font-size: 1rem;
    }
} 