/* ── OnPoint Loader ──────────────────────────────────────────── */
.onpoint-loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #ffffff;
}

.onpoint-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.onpoint-logo-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* The animated teal dot (mirrors the circle accent in the logo) */
.onpoint-dot-ring {
    position: relative;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}

.onpoint-dot {
    display: block;
    width: 18px;
    height: 18px;
    background: #5BC8C5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: onpoint-pulse 1.4s ease-in-out infinite;
}

.onpoint-dot-ring::before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    border: 2px solid #5BC8C5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: onpoint-ring 1.4s ease-out infinite;
}

@keyframes onpoint-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50%       { transform: translate(-50%, -50%) scale(0.75); opacity: 0.7; }
}

@keyframes onpoint-ring {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.onpoint-brand-text {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    letter-spacing: -1px;
    line-height: 1;
}

.onpoint-brand-sub {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #888888;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Loading bar */
.onpoint-loading-bar {
    width: 200px;
    height: 3px;
    background: #E8E8E8;
    border-radius: 2px;
    overflow: hidden;
}

.onpoint-loading-bar-fill {
    height: 100%;
    width: 40%;
    background: #5BC8C5;
    border-radius: 2px;
    animation: onpoint-slide 1.6s ease-in-out infinite;
}

@keyframes onpoint-slide {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(175%); }
    100% { transform: translateX(450%); }
}

.onpoint-loading-label {
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #5BC8C5;
    letter-spacing: 3px;
}

.onpoint-navbar-logo {
    max-width: 160px;
    width: 100%;
}

.onpoint-header-logo {
    max-height: 48px;
}

.onpoint-login-logo {
    max-width: 220px;
    width: 100%;
}
/* ─────────────────────────────────────────────────────────────── */

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1020;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
.page-title {
    display: none !important;
}