.video-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 10px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

video {
    width: 100%;
    border-radius: 10px;
    outline: none;
    display: block;
}

/* Video Controls */
.controls {
    margin-top: 10px;
    text-align: center;
}

.controls label {
    color: white;
    font-size: 14px;
    margin-right: 8px;
}

.controls select {
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* Progress Bar */
.progress-container {
    position: relative;
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #ff4e50, #fc913a);
    width: 0%;
    transition: width 0.4s ease-in-out;
}

/* Buffering Indicator */
.buffer-bar {
    position: absolute;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    width: 0%;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Buffer Animation */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
