﻿
.main-page {
    display: flex;
    flex-direction: column !important;
}

.my-menu {
    padding: 2px 10px;
    background: #0173C7;
    display: flex;
    align-items: center;
}

.my-nav, .my-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

    .my-nav a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        min-width: 40px;
        font-weight:bold;
    }

.my-carousel {
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.my-carousel-inner{
    display: flex;
    flex-direction:column;
    align-items:center;
}
.my-carousel-inner .item {
    display: none;
}

    .my-carousel-inner .item.active {
        display: block;
    }
    .my-carousel-inner .item img {
        border-radius:20px;
    }

.my-carousel-indic{
    width:100%
}
.my-carousel-indicators {
    padding: 10px;
    display: flex;
    justify-content: center
}
.my-carousel-indicators .indic{
    height:10px;
    width: 10px;
    border: 1px solid black;
    border-radius: 5px;
    margin: 0 10px;
    cursor: pointer;
}
    .my-carousel-indicators .indic.active {
      background:gray;
    }

.my-cols{
    display: flex;
    justify-content:space-between;
    direction:rtl;
    flex-wrap:wrap;

}
    .my-cols .my-col1 {
        width: 300px;
        border: 1px solid gray;
        border-radius: 25px;
        margin:5px;
        overflow:hidden;
    }
        .my-cols .my-col1 h3 {
            text-align: center;
            background: #3f9fcf94;
            padding:5px;
            height:80px;
        }




.video-player-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-control:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.time-display {
    color: white;
    font-family: monospace;
    font-size: 14px;
    min-width: 120px;
}

.volume-slider {
    width: 80px;
    height: 5px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
}

    .volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: white;
        cursor: pointer;
    }

/* Video.js customization */
.video-js .vjs-big-play-button {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}