/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

 .easy-player-code{
	font-size:25px !important;
}

#video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

input.easy-player-form-invalid,
select.easy-player-form-invalid,
textarea.easy-player-form-invalid {
    border: 1px solid red !important; /* Example: Red border for invalid fields */
}

#easy-player-snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: 20px;
    top: 50px;
    font-size: 17px;
  }
  
  #easy-player-snackbar.show {
    visibility: visible;
    -webkit-animation: easy-player-fadein 0.5s, easy-player-fadeout 0.5s 2.5s;
    animation: easy-player-fadein 0.5s, easy-player-fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes easy-player-fadein {
    from {top: 0; opacity: 0;} 
    to {top: 50px; opacity: 1;}
  }
  
  @keyframes easy-player-fadein {
    from {top: 0; opacity: 0;}
    to {top: 50px; opacity: 1;}
  }
  
  @-webkit-keyframes easy-player-fadeout {
    from {top: 50px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes easy-player-fadeout {
    from {top: 50px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }

  .easy_player_shortcode{
    text-align: center; 
    border: none; 
    outline: none; 
    background-color: #166c94; 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 3px;
  }

  .easy_player_tooltip input {
    cursor: pointer;
  }
  .easy_player_tooltip {
    position: relative;
    display: inline-block;
  }
  
  .easy_player_tooltip .eptooltip {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .easy_player_tooltip .eptooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .easy_player_tooltip:hover .eptooltip {
    visibility: visible;
    opacity: 1;
  }

  .fantasy-playback-rate{
    top:14px !important;
  }
