#videoCaptureForm {
    max-width: 520px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    font-family: Arial, sans-serif;
}

.vc-title {
    text-align: center;
    margin-bottom: 15px;
  font-weight: 600;
}

#videoCaptureForm input,
#videoCaptureForm select,
#videoCaptureForm button {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.vc-submit {
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.vc-submit:hover {
    background: #1e40af;
}

.vc-section {
    display: none;
    margin-top: 10px;
}

video {
    width: 100%;
    background: #000;
    border-radius: 8px;
    min-height: 240px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.controls button {
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
}

#timer {
    font-weight: bold;
    align-self: center;
}

progress {
    width: 100%;
    display: none;
}
.vc-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.vc-badge-success {
    background: #46b450;
    color: #fff;
}

.vc-badge-pending {
    background: #ffb900;
    color: #000;
}
