<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.age-calculator-container {
    margin: 20px auto;
    padding: 20px;
    border: 10px solid #c83636ad;
    background-color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.age-calculator-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #EB2E2E;
}

.age-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.age-form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.age-form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

@media (min-width: 600px) {
    .age-form-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .age-form-group label {
        width: 35%;
        margin-bottom: 0;
    }

    .age-form-group input {
        width: 60%;
    }
}

.age-results {
    margin-top: 20px;
}

.age-results table {
    width: 100%;
    border-collapse: collapse;
}

.age-results td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.age-results tr:nth-child(odd) {
    background-color: #fafafa;
}

.age-highlight {
    font-weight: bold;
    color: #444;
}</pre></body></html>