﻿body {
}


@font-face {
    font-family: 'Exo2';
    src: url('/fonts/Exo2-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo2Italic';
    src: url('/fonts/Exo2-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.diadromi-style {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 26px;
    color: #d78121; /* Example color, adjust as needed */
    font-weight: 700;
    vertical-align: bottom; /* Closest CSS equivalent to VerticalOptions="End" */
}

.phonetic-style {
    font-family: 'Exo2Italic', Arial, sans-serif;
    font-size: 16px;
    color: #626262; /* Example color, adjust as needed */
    font-style: italic;

}

.logo-img {
    margin: 0 0 4px 0;
    height: 30px;
}

.version-style {
    display: inline-block;
    vertical-align: bottom;
    margin: 0px 0 6px 5px;
    font-size: 0.7em;
    color: gray;
}

.parent-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    padding: 0.1rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.parent-badge:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.3);
}

    .parent-badge i {
        font-size: 1.1rem;
        color: var(--primary-light);
    }