html, body {
    margin: 0;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

/* Clickable table rows in the user list. */
.cursor-pointer { cursor: pointer; }

/* Flex gap helpers (not guaranteed across MudBlazor versions). */
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

/* Minimal styling for the statically-rendered login form (no MudBlazor JS there). */
.login-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.login-field label {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
    color: rgba(0, 0, 0, 0.6);
}

.login-input {
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.23);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s ease-in-out;
}

.login-input:focus {
    border-color: #594ae2; /* MudBlazor default primary */
}

.login-button {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #594ae2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.login-button:hover {
    background-color: #4a3dd0;
}

.validation-message {
    color: #d32f2f;
    font-size: 0.78rem;
    margin-top: 0.3rem;
}
