/* Age Calculator - Tool-specific styles */

.age-main {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 32px 16px;
    flex-wrap: wrap;
}

.age-primary {
    text-align: center;
}

.age-primary .age-number {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: var(--text-primary, #fff);
    line-height: 1;
}

.age-primary .age-label {
    font-size: 18px;
    color: var(--text-muted, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-secondary {
    text-align: center;
}

.age-secondary .age-number {
    display: block;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-secondary, #e5e7eb);
    line-height: 1;
}

.age-secondary .age-label {
    font-size: 14px;
    color: var(--text-muted, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-details {
    background: var(--bg-tertiary, #1a1a1a);
    border-radius: 8px;
    padding: 16px;
    margin-top: 60px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-default, #374151);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    margin: 8px -16px -16px;
    padding: 12px 16px;
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted, #9ca3af);
    font-size: 14px;
}

.detail-value {
    color: var(--text-primary, #fff);
    font-weight: 600;
    font-size: 14px;
}

.detail-row.highlight .detail-value {
    color: #fbbf24;
}

@media (max-width: 480px) {
    .age-main {
        gap: 16px;
    }
    
    .age-primary .age-number {
        font-size: 56px;
    }
    
    .age-secondary .age-number {
        font-size: 36px;
    }
}
