/*Video Player*/

#combinedContainer {
    position: absolute;
    z-index: 1000;
    cursor: grab;
    display: none;
    position: absolute;
    top: 20%;
    left: 20%;
    width: 600px;
    max-width: 100%;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
  }
  
  .header {
    padding: 6px;
    background-color: #333;
    color: #fff;
    cursor: grab;
    text-align: right;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .input-content {
    padding: 6px;
    background-color: #333;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .input-content input {
    width: 70%;
    padding: 6px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .input-content button {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    background-color: #022b42;
    color: white;
    border: none;
    border-radius: 5px;
  }

  
  #videoContainer {
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    position: relative;
  }
  
  #videoContainer iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
  }
  
  #vidText {
    color: #fff;
  }

  .minimized #videoContainer iframe {
    height: 100px;
  }
  
  .draggable {
    cursor:grab;
  }
  
  .close-btn, .minimize-btn {
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 50%;
  }