/* Batonroute Nexo — Custom overrides on top of CoreUI 5 */

.header-brand {
    font-size: 1.1rem;
    text-decoration: none;
}

.badge-state {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

.otp-input {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.5em;
    font-weight: 700;
}

.comment-body img {
    max-width: 100%;
    border-radius: 0.375rem;
    margin: 0.5rem 0;
}

.ql-container {
    min-height: 180px;
    font-size: 0.95rem;
}

.table>thead>tr>th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Global Loader */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

[data-coreui-theme="dark"] #global-loader {
    background-color: rgba(0, 0, 0, 0.5);
}

#global-loader .spinner-border {
    width: 3rem;
    height: 3rem;
}