.loading-object {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: black;
}

.sw-bootstrap {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    box-sizing: border-box;
    background: #0b0b0b;
    color: #fff;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

.sw-bootstrap.visible {
    display: flex;
}

.sw-bootstrap-title {
    font-size: 16px;
    opacity: 0.9;
}

.sw-progress-wrapper {
    width: min(360px, 90vw);
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.sw-progress-bar {
    width: 0%;
    height: 100%;
    background: #1f6bff;
    transition: width 0.25s ease;
}

.sw-percent {
    font-size: 14px;
    opacity: 0.85;
}

#sw-error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

    #sw-error-container .message {
        max-width: 460px;
        text-align: center;
    }

    #sw-error-container .retry {
        padding: 8px 14px;
        border: 0;
        border-radius: 6px;
        cursor: pointer;
        background: #1f6bff;
        color: #fff;
    }