/* 
 * Yaş Hesaplayıcısı için özel stiller
 * Bu dosya sadece yaş hesaplayıcısına özgü ve calculator-common.css'de bulunmayan stilleri içerir
 */

/* Açıklama metni için stil */
.calculator-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Sonuç grid görünümü */
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.8rem;
    margin-bottom: 1.5rem;
}

/* Sonuç öğelerinin stilleri */
.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa;
    border-left: 3px solid var(--primary-color);
}

.result-label {
    font-weight: 600;
    color: #555;
}

.result-value {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

/* Toplam değerler için stiller */
.total-values {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #eee;
}

.result-item.total {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.result-item.total .result-label {
    color: #333;
    font-weight: 700;
}

.result-item.total .result-value {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Hesaplama adımları stilleri */
.calculation-steps {
    margin-top: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.steps-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-top: 1rem;
}

.step {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-left: 3px solid var(--primary-color);
    background-color: #f8f9fa;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: #555;
}

.step-title {
    font-weight: 700;
    color: #333;
}

.no-steps {
    color: #777;
    font-style: italic;
}

/* Burç bilgisi stilleri */
.zodiac-content {
    margin-top: 0.5rem;
}

.zodiac-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.zodiac-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
}

.zodiac-name h5 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.zodiac-name p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.zodiac-details p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
}

.zodiac-traits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.trait-item {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

.trait-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.trait-value {
    font-size: 0.9rem;
    color: #333;
}

/* Burç arkaplan renkleri */
.zodiac-aries { background-color: #ffefef; }
.zodiac-taurus { background-color: #f0ffe5; }
.zodiac-gemini { background-color: #f5f5f5; }
.zodiac-cancer { background-color: #f1f5ff; }
.zodiac-leo { background-color: #fff9e6; }
.zodiac-virgo { background-color: #f5f5f5; }
.zodiac-libra { background-color: #f9e6ff; }
.zodiac-scorpio { background-color: #ffe6e6; }
.zodiac-sagittarius { background-color: #e6f9ff; }
.zodiac-capricorn { background-color: #f5f5f5; }
.zodiac-aquarius { background-color: #e6f9ff; }
.zodiac-pisces { background-color: #e6f9ff; }

/* İkincil buton stilinin üzerine yaz */
.calculator-btn.btn-secondary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    margin-left: 1rem;
}

.calculator-btn.btn-secondary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

/* Duyarlı tasarım düzeltmeleri */
@media (max-width: 768px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .zodiac-traits {
        grid-template-columns: 1fr;
    }
    
    .calculator-btn.btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .zodiac-header {
        flex-direction: column;
        text-align: center;
    }
    
    .zodiac-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .step {
        padding: 0.4rem;
    }
} 