:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --background-color: #cddae6;
  --text-color: #212529;
  --link-hover-color: #0056b3;
  --padding-standard: 1rem;
  --margin-standard: 1rem;
  --font-base-size: 16px;
}

/* urbanist-latin-wght-normal */
@font-face {
  font-family: 'Urbanist Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/urbanist:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

body {
  font-family: Arial, sans-serif;
  font-size: var(--font-base-size);
  color: var(--text-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
}

#app-content {
  padding-top: 0px;
}

.customnavmpstuff
{
    padding-left: 21px;
    padding-right: 21px;
}

.align-items-md-stretch {
  padding-bottom: 20px;
}


.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-nav .nav-item {
  margin-right: 10px;
}

.nav-item .btn {
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 0.9rem;
}

.custom-header {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: lightgray;
  background-size: contain;
  height: 400px;
  padding: 0px;
}

.custom-sidebar {
  padding-top: 52px;
  margin-top: 0px;
}

.album .row .col {
  padding: 5px;
}

.card, .img-fluid {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  margin-bottom: var(--margin-standard);
}

.card:hover, .img-fluid:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-img-top {
  height: 357px;
  object-fit: cover;
  padding: 0;
}

.card-header {
  padding: 0 0 0.75rem 0;
}

.card-title {
  font-size: 1rem;
}

.clickable-card {
  cursor: pointer;
}

.breadcrumb {
  background-color: transparent;
  margin-top: 31px;
  margin-bottom: 20px;
  padding: 0px;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--link-hover-color);
}

.ad-top, .ad-section {
  margin-bottom: var(--margin-standard);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: var(--link-hover-color);
}

.relevant-links {
  padding: var(--padding-standard);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: var(--margin-standard);
  margin-bottom: var(--margin-standard);
}

.youtube {
  margin-top: 20px;
  margin-bottom: 20px;
}

.row {
  margin-bottom: 15px;
}

.ad-top img {
  width: 100%;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  body {
    font-size: calc(var(--font-base-size) + 2px);
  }
}

.icon-person-circle {
  border-radius: 50%;
  border: 2px solid var(--main-color);
  padding: 2px;
}

.icon-magnifying-glass {
  /* Icon style */
}

.search-bar {
  /* Search bar style */
}

.nav.flex-column.nav-pills {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  font-size: 1rem;
}

.navbar-toggler {
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 0.9rem;
}

.nav.flex-column.nav-pills {
  display: flex;
  flex-direction: column;
}

.navbar-brand {
  margin-left: auto;
  margin-right: auto;
}

.search-bar {
  display: none;
}

#v-pills-tab a {
  cursor: pointer;
}

/* Custom Styles for Watch History Tab Cards */
.card-custom {
  height: 200px; /* Set a fixed height */
  width: 100%; /* Full width */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute space evenly */
}

.card-body {
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.row .card {
  flex: 1; /* Cards will take up equal space */
}

.star-rating .fa {
  color: #ddd; /* Default star color */
  cursor: pointer;
}

.star-rating .fa:hover,
.star-rating .fa.active {
  color: #ffc107; /* Active/Hover star color */
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.star-rating {
  display: flex;
  justify-content: space-between;
}

.tracking-switch{
  display: flex;
  justify-content: space-between;
}

.star-rating input {
  display: none;
}

.star-container {
  display: flex;
  align-items: center;
}

.star-rating label {
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background-color: #ddd;
  border: 1px solid #ddd;
  line-height: 1.5rem;
  text-align: center;
}

.star-rating input:checked ~ label {
  background-color: #ffc107;
  border-color: #ffc107;
}
.star-rating label i {
  display: block;
  font-size: 1.25rem;
}

.star-rating input:checked ~ label i {
  color: #000;
}

.star-rating-item {
  color: #ccc; /* Unselected color */
  cursor: pointer;
}

.star-rating-item input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.star-rating-item label {
  cursor: pointer;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
}
