.video-block {
    width: 100%;
    margin: 0.5rem 0;
    transition: all 0.2s ease;
}

.video-setup-container {
    width: 100%;
    min-height: 180px;
    background-color: var(--bg-secondary, #f8f9fa);
    border: 2px dashed var(--border, #e1e4e8);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: all 0.2s ease;
}

.video-setup-container:hover {
    border-color: var(--accent, #2383e2);
    background-color: rgba(35, 131, 226, 0.02);
}

.video-setup-title {
    color: var(--text-secondary, #4b4b4b);
    font-size: 0.875rem;
    font-weight: 500;
}

.video-buttons-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.video-primary-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: white;
    border: 1px solid var(--border, #e1e4e8);
    border-radius: 8px;
    color: var(--text-primary, #050505);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.video-primary-btn:hover {
    background-color: var(--bg-secondary, #f8f9fa);
    border-color: var(--text-secondary, #4b4b4b);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.video-primary-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary, #4b4b4b);
}

.video-record-btn {
    background-color: #ef4444;
    border-color: #ef4444;
    color: white;
}

.video-record-btn:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
}

.video-record-btn svg {
    color: white;
}

.video-container {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: black;
}

.video-preview {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

.video-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    z-index: 20;
}

.video-container:hover .video-remove-btn {
    opacity: 1;
}

.video-remove-btn:hover {
    background-color: rgba(239, 68, 68, 0.9);
}

.video-loading-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 30;
    backdrop-filter: blur(2px);
}

.video-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-recording-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}