/* Locked Overlay Component Styles */
.asc-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.asc-locked-overlay:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.asc-locked-overlay__icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--warning-amber);
    margin-bottom: 10px;
}

.asc-locked-overlay__icon-container--animated {
    animation: pulse 2s infinite;
}

.asc-locked-overlay__icon {
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
}

.asc-locked-overlay__text {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.asc-locked-overlay__arrow {
    color: var(--warning-amber);
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}