.o_translation_lock_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o_translation_lock_box {
    background: #fff;
    border-radius: 8px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.o_translation_spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #7c7bad;
    border-radius: 50%;
    animation: o_translation_spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes o_translation_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.o_translation_lock_text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.o_translation_lock_countdown {
    font-size: 24px;
    font-weight: bold;
    color: #7c7bad;
    margin-top: 10px;
}
