/*
 *  Customizing VideoJS CSS.
 */
.video-js .vidmod-custom {
    color: lightgrey;
}

.vidmod-custom .vjs-big-play-button {
    border: none;
    border: 0.05em solid;
    border-color: rgba(43, 51, 63, 0.7);
    color: darkgrey;
}

.vidmod-custom .vjs-big-play-button:hover {
    border-color: chartreuse;
    border: 0.05em solid;
    color: lightgreen;
}

/*
 *  Customizing VideoJS-Bug CSS since it needs help.
 */
span img {
    max-height: auto;
    max-width: 100%;
}

button:focus {}
button:focus:not(:forcus-visible) {}
button:focus-visible {
    outline: 2px solid orange;
}
/*
 * Video Modify specific CSS.
 */
body {
    background-color: #323232;
    color: lightgrey;
}

a {
    color: lightgreen;
    text-decoration: underline;
}

a:visited {
    color: mediumseagreen;
}

a:hover {
    color: chartreuse;
}

.vidmod-color {
    color: #ED4037;
}


ul {
}

li {
    border-bottom: 0.01em solid #ED4037;
    padding-top: 1em;
}

/*
 * Styling the pagination nav bar.
 */
nav li {
    border-bottom: 0.00em solid;
    padding-top: 0em;
}

nav a {
    color: lightgreen;
    text-decoration: underline;
}

nav a:visited {
    color: mediumseagreen;
}

nav a:hover {
    color: chartreuse;
}

.page-link {
    color: lightgreen;
    background-color: #343a40;
    border-color: #343a40;
}

.page-link:hover {
    background-color: #23272b;
    border-color: #1d2124;
    color: chartreuse;
}

.page-item.active .page-link {
    color: white;
    background-color: mediumseagreen;
    border-color: mediumseagreen;
}

.page-item.disabled .page-link {
    background-color: #343a40;
    border-color: #343a40;
}

/*
 * Model Dialog Settings
 *   It slides in from the top.
 */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}

/* Modal Content */
.modal-content {
  position: fixed;
  top: 10%;
  left: 20%;
  background-color: #fefefe;
  width: 75%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {
    padding: 2px 16px;
    color: darkslategray;
}

.modal-footer {
  padding: 15px 16px;
  background-color: #5cb85c;
  color: white;
  text-align: left;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {top: 0; opacity: 0}
  to {top: 10%; opacity: 1}
}

@keyframes slideIn {
  from {top: 0; opacity: 0}
  to {top: 10%; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}
