/**
 * Age Calculator Styles
 */

.gth-age-calculator .gth-input[type="date"] {
    cursor: pointer;
}

/* Main Age Display */
.gth-age-calculator .gth-age-main {
    margin: var(--gth-space-4) 0;
}

.gth-age-calculator .gth-age-years {
    font-size: 4rem;
    font-weight: var(--gth-font-bold);
    color: var(--gth-primary);
    line-height: 1;
}

.gth-age-calculator .gth-age-label {
    font-size: var(--gth-text-lg);
    color: var(--gth-text-secondary);
    margin-top: var(--gth-space-1);
}

.gth-age-calculator .gth-age-precise {
    font-size: var(--gth-text-base);
    color: var(--gth-text-secondary);
    margin-top: var(--gth-space-2);
}

/* Age Details Grid */
.gth-age-calculator .gth-age-details {
    margin: var(--gth-space-6) 0;
}

.gth-age-calculator .gth-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gth-space-3);
}

.gth-age-calculator .gth-detail-card {
    padding: var(--gth-space-3);
    background: var(--gth-gray-50);
    border-radius: var(--gth-radius-md);
    text-align: center;
}

.gth-age-calculator .gth-detail-value {
    font-size: var(--gth-text-xl);
    font-weight: var(--gth-font-bold);
    color: var(--gth-text-primary);
}

.gth-age-calculator .gth-detail-label {
    font-size: var(--gth-text-xs);
    color: var(--gth-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--gth-space-1);
}

/* Birth Info */
.gth-age-calculator .gth-birth-info {
    margin-top: var(--gth-space-4);
    padding: var(--gth-space-4);
    background: var(--gth-gray-50);
    border-radius: var(--gth-radius-md);
}

.gth-age-calculator .gth-info-row {
    display: flex;
    justify-content: space-between;
    padding: var(--gth-space-2) 0;
    font-size: var(--gth-text-sm);
}

.gth-age-calculator .gth-info-row:not(:last-child) {
    border-bottom: 1px solid var(--gth-border-color);
}

.gth-age-calculator .gth-info-label {
    color: var(--gth-text-secondary);
}

.gth-age-calculator .gth-info-value {
    font-weight: var(--gth-font-medium);
    color: var(--gth-text-primary);
}

/* Zodiac styling */
.gth-age-calculator .gth-zodiac {
    display: inline-flex;
    align-items: center;
    gap: var(--gth-space-2);
}

.gth-age-calculator .gth-zodiac-icon {
    font-size: var(--gth-text-lg);
}

/* Countdown highlight */
.gth-age-calculator .gth-countdown-row .gth-info-value {
    color: var(--gth-primary);
}

@media (max-width: 640px) {
    .gth-age-calculator .gth-age-years {
        font-size: 3rem;
    }

    .gth-age-calculator .gth-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
