/* V061 – Live-Username-Check Status-Anzeige
   Wird unterhalb des Username-Inputs angezeigt.
   Eingebunden in register.php und index.php. */

.username-status {
    margin-top: 6px;
    min-height: 1.2em;
    font-size: 0.9em;
    line-height: 1.3;
    color: #666;
}

.username-status.is-available {
    color: #1e7e34;          /* grün */
    font-weight: 500;
}

.username-status.is-taken {
    color: #c8211c;          /* rot */
    font-weight: 500;
}

.username-status.is-reserved {
    color: #d97706;          /* orange */
}

.username-status.is-blocked {
    /* V125: kommt aus dem Live-Check NIE zurueck (Anti-Enumeration),
       die API ruft username_status() ohne $include_blacklist auf.
       Stil hier nur fuer den Fall, dass intern doch mal ein 'blocked'
       gerendert wird (z.B. Debug-Modus, Admin-Check). Optik = taken. */
    color: #c8211c;          /* rot */
    font-weight: 500;
}

.username-status.is-invalid {
    color: #c8211c;          /* rot */
}

.username-status.is-loading {
    color: #888;
    font-style: italic;
}
