body {
    display: flex;
    background-color: rgb(28, 28, 28);
    color: white;
    user-select: none;
    caret-color: transparent;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0%;
    cursor: url('left_ptr.cur'), auto;
}

.cc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 55%;
    cursor: url('left_ptr.cur'), auto;
}

.media {
    box-shadow: 0px 10px 90px rgba(255, 255, 255, 0.5);
    border-radius: 2%;
    margin-top: 7%;
    aspect-ratio: 16/9;
    width: 100%;
    cursor: url('pointing_hand.cur'), auto;
}

.title {
    font: 900;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0.5%;
    margin-bottom: 0.7%;
}

.descp {
    border-radius: 25px;
    padding: 1.5%;
    width: 100%;
    background-color: rgba(72, 70, 70, 0.429);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17.5px;
    font-weight: 500;
}

.para {
    padding: 0%;
    margin: 0%;
}

.outer {
    display: flex;
    margin-top: 1%;
    margin-bottom: 1%;
    justify-content: center;
}

.volumeOverlay {
    display: none;
    position: absolute;
    background-color: rgba(72, 70, 70, 0.793);
    width: 15%;
    justify-content: center;
    align-items: center;
    height: 5%;
    border-radius: 25px;
    cursor: url('left_ptr.cur'), auto;
}

#vrange {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 77%;
    height: 5px;
    background: #00000000;
    border-radius: 5px;
    outline: none;
    color: rgb(255, 0, 0);
    transition: background 0.2s ease;
}

#vrange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    margin-top: -4px;
    background: #ffffff;
    border-radius: 50%;
    cursor: url('size_hor.cur'), auto;
}

#vrange::-moz-range-thumb {
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-radius: 50%;
    cursor: url('pointing_hand.cur'), auto;
}

#vrange::-webkit-slider-runnable-track {
    height: 5px;
    /* background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #dddddd00 50%, #dddddd00 100%); */
    border-radius: 5px;
    cursor: url('pointing_hand.cur'), auto;
}

#vrange::-moz-range-track {
    height: 5px;
    /* background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #dddddd00 50%, #dddddd00 100%); */
    border-radius: 5px;
    cursor: url('pointing_hand.cur'), auto;
}

#Ovolume {
    width: 10%;
    margin-right: 3%;
}

.controls {
    display: flex;
    margin-top: 1%;
    margin-bottom: 1%;
    justify-content: center;
    cursor: url('left_ptr.cur'), auto;
}

.bb {
    margin-left: 2%;
    margin-right: 2%;
    width: 3%;
    cursor: url('pointing_hand.cur'), auto;
}

#volume {
    margin: 0;
    display: flex;
    float: left;
    margin-top: 1%;
    margin-bottom: 1%;
}

#full {
    height: 0.1%;
    width: 3%;
    margin-top: auto;
    margin-bottom: auto;
    display: none;
    cursor: url('pointing_hand.cur'), auto;
}

#live {
    margin: 0;
    display: none;
    float: left;
    margin-top: 1%;
    margin-bottom: 1%;
    cursor: url('pointing_hand.cur'), auto;
}

#send {
    margin: 0;
    display: flex;
    float: left;
    width: 2%;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-right: 1%;
    cursor: url('pointing_hand.cur'), auto;
}

.popup {
    position: fixed;
    bottom: 75px;      /* Position it near the bottom */
    left: 50%;         /* Center horizontally */
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    cursor: url('left_ptr.cur'), auto;
  }
  
  /* Pop-up visible when triggered */
  .popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: url('left_ptr.cur'), auto;
  }