#odsl-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 17, 26, 0.52);
    transition: opacity 220ms ease;
}

#odsl-page-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

#odsl-page-loader .loader-card {
    width: 280px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    padding: 14px 16px 12px;
}

#odsl-page-loader .loader-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #495057;
    margin-bottom: 8px;
}

#odsl-loader-progress {
    font-weight: 700;
    color: #1f7ae0;
}

#odsl-page-loader .loader-track {
    height: 4px;
    background: #e7ebef;
    border-radius: 999px;
    overflow: hidden;
}

#odsl-loader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1a73e8, #4da3ff);
    border-radius: 999px;
    transition: width 220ms ease;
}

#odsl-ajax-loader {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8, 16, 12, 0.38);
}

#odsl-ajax-loader.is-visible {
    display: flex;
}

#odsl-ajax-loader .ajax-loader-card {
    min-width: 230px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    padding: 14px 18px;
    text-align: center;
}

#odsl-ajax-loader .ajax-loader-spinner {
    width: 28px;
    height: 28px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 3px solid #d7e2db;
    border-top-color: #006c30;
    animation: odsl-ajax-spin 0.8s linear infinite;
}

#odsl-ajax-loader .ajax-loader-text {
    font-size: 13px;
    color: #2c3e35;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@keyframes odsl-ajax-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
