#root > [hidden] {
    display: none !important;
}

.workspace-bootstrap-surface {
    min-height: 100vh;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 32px 20px;
    background: #f7f8fa;
    color: #1b1b1f;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.workspace-bootstrap-card {
    width: min(100%, 420px);
    box-sizing: border-box;
    padding: 32px;
    border: 1px solid #dedee3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgb(26 28 35 / 8%);
    text-align: center;
}

.workspace-bootstrap-brand {
    margin: 0 0 28px;
    color: #111216;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.workspace-bootstrap-spinner {
    display: block;
    width: 28px;
    height: 28px;
    box-sizing: border-box;
    margin: 0 auto 20px;
    border: 3px solid #d8d9df;
    border-top-color: #3b62f6;
    border-radius: 50%;
    animation: workspace-bootstrap-spin 800ms linear infinite;
}

.workspace-bootstrap-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.workspace-bootstrap-message {
    margin: 10px 0 0;
    color: #5d6069;
    font-size: 15px;
    line-height: 1.5;
}

.workspace-bootstrap-reload {
    min-height: 40px;
    margin-top: 24px;
    padding: 9px 18px;
    border: 1px solid #2548d8;
    border-radius: 6px;
    background: #3157eb;
    color: #ffffff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.workspace-bootstrap-reload:hover {
    background: #2548d8;
}

.workspace-bootstrap-reload:focus-visible {
    outline: 3px solid rgb(49 87 235 / 35%);
    outline-offset: 3px;
}

@keyframes workspace-bootstrap-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .workspace-bootstrap-spinner {
        animation: none;
    }
}
