﻿.inputLabel {
  color: blue;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
}
.inputLabel:hover {
  text-decoration: underline;
}
.inputLabelContainer {
  margin-left: 20px;
}
.inputLabelContainer:hover {
  background-color: #ffc;
}
.formGroupSingleLine {
  margin-bottom: 16px;
}
.video-container {
  border: solid 1px black;
  background-color: #75bfee;
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 20px 20px 0;
}
.video-container .names {
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
}
.video-container embed {
  border: solid 1px black;
  border-radius: 5px;
}
/*

.announcement-bar {    
    width:100%;
    background-color: #eb1d25;
    font-family: Oswald, sans-serif;
    color: #fff;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;

    & > div {
        margin-left: 10px;
        margin-right: 10px;


        & > a:link, a:visited, a:active {
            color: white;
            text-decoration: none;
        }

        & > a:hover {
            color: white;
            text-decoration: underline;
        }
    }
}
*/
@media only screen and (max-width: 768px) {
  .announcement-bar {
    top: 55px;
  }
  .announcement-bar > div {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .announcement-bar {
    top: 0px;
  }
  .announcement-bar > div {
    display: inline-block;
  }
}
.sortButton {
  color: blue;
  cursor: pointer;
}
.loggedInAsBar {
  margin: 0;
  width: 100%;
  padding: 5px;
  background-color: orange;
  text-align: center;
}
.loggedInAsBar div {
  margin: 5px;
  display: inline-block;
}
.loggedInAsBar div a:link,
.loggedInAsBar div a:visited {
  color: black;
}
.editable {
  display: none;
  background-color: yellow;
  padding: 5px;
}
h3.someone-will-contact-you {
  text-align: center;
  margin-top: 30px;
  margin: 50px 0 200px 0;
}
#video-display-container {
  margin-bottom: 100px;
}
#video-display-container a.btn-danger {
  margin-top: 10px;
}
#video-display-container #home-page-video-row {
  text-align: center;
}
#video-display-container #home-page-video-row .card {
  width: 310px;
  max-width: 310px;
  margin-bottom: 10px;
  padding: 5px;
}
#video-display-container #home-page-video-row .card img {
  max-width: 290px;
}
#video-display-container #home-page-video-row .card a {
  width: 100%;
}
#video-display-container #home-page-video-row .card .card-body,
#video-display-container #home-page-video-row .card .card-footer {
  padding: 0;
}
#video-gallery-page .card {
  margin-bottom: 10px;
}
#video-gallery-page a.btn-danger {
  width: 100%;
}
.meta-edit-button {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 2px 5px 2px 5px;
  border-bottom-left-radius: 5px;
}
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.video-grid .video-item iframe {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.video-grid .video-item.tiktok {
  width: 300px;
  height: 525px;
  flex: 0 0 300px;
}
.video-grid .video-item.youtube {
  flex: 1;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}
.video-grid .video-item.youtube .yt-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-grid .video-item.youtube .yt-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .video-grid .video-item.youtube {
    max-width: 100%;
  }
}
/* 1. The Outer Div: Handles the centering */
.video-container-outer {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: flex-start;
  /* Keeps the grid at the top */
  width: 100%;
  padding: 20px;
}
/* 2. The Grid Container: Controls the maximum width */
#video-grid-container {
  width: 100%;
  /* Max width = (Columns * 300px) + (Margins) */
  /* For 4 columns of 300px with 20px margins: */
  max-width: 1280px;
}
/* Moved from \Views\Shared\Plugins\Bootstrap4.cshtml */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: black;
  background-color: black;
}