/**
 * Video button styles
 */
.btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s;
    background-color: #4b5563;
    color: white;
    width: 100%;
}

.btn-video:hover:not(:disabled) {
    background-color: #374151;
}

.btn-video:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
