/* Global layout and component styling */
body {
    background: linear-gradient(to bottom, #ffeb3b 5%, #2b2b2b 5%);
    color: #ffffff;
    border: 1px solid #ffeb3b;
}
.nav {
  background-color: #fff3cd;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 2rem;
}

.nav > li {
  margin: 0 1rem;
}

.nav > li > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav > li > a:hover {
  background-color: #ffd54f;
  transform: scale(1.05);
}

.footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 1rem 0;
  margin-top: 2rem;
  text-align: center;
}

.custom-container .border {
  background-color: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* Modal and content area text visibility */
.modal-content {
    color: #212529;
}

.container table,
.container .table {
    color: #212529;
    background-color: #ffffff;
}

/* Existing styles */
.cms-plugin.djangocms-video .video-player {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}

/* FullCalendar styles moved to shedule_our_classes.html template */

.logo img {
    height: 50px;
    max-height: 60px;
    object-fit: contain;
}

.cms-menu .nav {
    gap: 1rem;
}

header {
    background: linear-gradient(to bottom, #ffeb3b 5%, #1c1c1c 5%);
    color: white;
}