/* Jump / loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex;
}

.loading-panel {
    position: relative;
    width: 300px;
    padding: 28px 24px;
    text-align: center;
}

.loading-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.loading-close:hover {
    background: #fff;
}

.loading-overlay__text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.5;
}

.loading-progress {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    overflow: hidden;
}

.loading-progress__bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
    transition: width 0.1s linear;
}

.loading-progress__text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0 0;
}
