.video-container {
    position: relative;
}

.video-js {
    border-radius: 10px !important;
    touch-action: manipulation; /* Allow touch interactions */
    overflow: hidden; /* Ensure rounded corners apply to internal elements */
    width: 100% !important;
    height: auto !important;
    max-width: 100%; /* Ensure it doesn’t overflow */
    aspect-ratio: 16 / 9; /* Keep a consistent aspect ratio */
}


/* Style the big play button */
.vjs-big-play-button {
    border-radius: 50%; /* Makes it circular */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    width: 60px; /* Adjust size as needed */
    height: 60px;
    line-height: 60px; /* Center icon vertically */
    display: none !important;

}

.vjs-big-play-button:before {
    font-size: 24px; /* Adjust icon size as needed */
    color: #fff; /* Icon color */
}

.video-js video {
    border-radius: 10px !important;
    object-fit: contain !important;
}

/* rounded bottom for control bar */
.vjs-default-skin .vjs-control-bar {
    border-radius: 0 0 10px 10px;
    background: radial-gradient(circle at 10.6% 22.1%, rgb(206, 18, 18) 0%, rgb(122, 21, 21) 100.7%);
    flex-wrap: wrap;
    overflow: visible;
    display: flex !important;
    opacity: 1 !important;
}

/* increase toolbar icon size */
.vjs-icon-placeholder:before {
    font-size: 2em !important;
}

/* Increase the size of the progress bar */
.vjs-progress-control .vjs-progress-holder {
    height: 8px; /* Height of the entire progress bar */
}

/* Rounded corners for the progress bar */
.vjs-progress-control .vjs-progress-holder,
.vjs-progress-control .vjs-play-progress,
.vjs-progress-control .vjs-load-progress {
    border-radius: 5px; /* Apply border-radius to all progress segments */
}

/* Customize the color of the played progress (the bar that shows how much of the video has been played) */
.vjs-progress-control .vjs-play-progress {
    background: linear-gradient(109.6deg, rgb(255, 207, 84) 11.2%, rgb(255, 158, 27) 91.1%);


}

/* Customize the color of the loaded progress (buffered part of the video) */
.vjs-progress-control .vjs-load-progress {
    background-color: #333; /* Custom color for buffered part */
}

.video-container .centered-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    border-radius: 10px;
    z-index: 1000;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.video-container .centered-play-btn button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-js.paused-opacity {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.video-js-ad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000;
    display: none;
}

.video-js-ad .body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.video-title {
    font-size: 1.4em;
    line-height: 1.5em;
}

.video-meta {
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 767px) {
    .video-title {
        font-size: 1em;
        /* line-height: 1.2em; */
        font-weight: bold;
        line-height: 1.2em;
    }

    .video-meta {
        font-size: 0.8em;
    }

    .video-metadata div {
        text-align: center;
    }
}

.model-place {
    border:2px solid #ccc;
}

.model-place.performing-live {
    border:2px solid #F57C00;
}