
body {
    background-color: black;
    color: #f5f5f5;
}


.hidden {
    display: none !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.tutorial-highlight {
    position: relative;
    z-index: 9999 !important;
    box-shadow: 0 0 10px #0078d7;
}

.footer-spacing {
    height: 100px;
}

.footer {
    margin-top: auto;
    background-color: #f1f1f1;
    padding: 20px;
    position: sticky;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.image-blurred-edge {
    height: calc(719 * 100vw / 1079);
    max-height: 720px;
    background-image: url('../images/backgrounds/dgrr_background_1080.jpeg');
    background-size:cover;
    background-position: top;
    box-shadow: 0 0 30px 30px black inset;
}

.banner {
    display: block;
}

.banner-stretch {
    display: inline-block; 
    max-width: 400px;
}


.logo-container {
    max-width: 400px;
    width: calc(100vw / 2);
    margin-top: 20px;
    margin-left: 20px;
    background-color: rgba(245, 245, 245, 0.6);
    border-radius: 8px;
    background-size: 100% auto;
}

.logo {
    width: 100%;
}

.links-container {
    display: inline-block;
    overflow-wrap: break-word;
    min-width: 50px;
}

.flex-container {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

.flex-item {
  padding: 5px;
  height: 150px;
  color: white;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
}

.waiver-bold-red {
    font-weight: bold;
    color: red;
}

.banner-main-image {
    max-width: 800px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
}
.navbar-nav {
    flex-direction: row;
}
.nav-item {
    margin-left: 1rem;
}
.header-fixed-icons {
    margin-left: auto;
}
.header-icon-container {
    display: inline-block;
}
/* Menu Button Styles */
.menu-button {
    display: none;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-collapse {
        display: none !important;
    }
    .menu-button {
        display: block;
        margin-right: auto;
    }
    .navbar-nav {
        flex-direction: column;
    }
}
/* Ensure dropdown menus are positioned correctly */
.navbar-nav .dropdown-menu {
    position: absolute;
}

.padding-left-30 {
    padding-left: 30px;
}


/* Container for the location key */
.location-key-container {
    overflow: hidden;
}

/* Row that holds the location items */
.location-key-row {
    display: flex;
    flex-wrap: nowrap;             /* Prevent items from wrapping */
    justify-content: center;
    align-items: center;
}

/* Individual location items */
.location-item {
    display: flex;
    align-items: center;
    flex-shrink: 1;                /* Allow items to shrink */
    margin: 0 10px;                /* Horizontal margin between items */
}

/* Adjusting the icon size */
.location-icon {
    max-width: 30px;               /* Icon size reduced to half */
    height: auto;
}

/* Adjusting the font size */
.location-name {
    font-size: 12px;               /* Font size reduced to half */
    margin-left: 5px;              /* Space between icon and name */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .location-icon {
        max-width: 20px;
    }
    .location-name {
        font-size: 10px;
    }
}

.facebook-blue {
    color: #1877F2;
}

.logged-out {
    color: red;
}

.logged-in {
    color: green;
}



/* verification codes */
.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}
.code-inputs input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.code-inputs input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.code-inputs input.is-invalid {
    border-color: #dc3545;
}


/* marquee */
/* Marquee Styles */
.marquee {
    width: 100%;
    max-width: 1400px; /* Set maximum width */
    margin: 0 auto;     /* Center the marquee */
    height: 75px;       /* Set the marquee height */
    overflow: hidden;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    align-items: center;       /* Center images vertically if needed */
    flex-wrap: nowrap;         /* Prevent wrapping */
    will-change: transform;    /* Optimize for animations */
  }
  
  .marquee-content img {
    height: 75px; /* Image height matches marquee height */
    width: auto;  /* Width adjusts automatically */
    flex-shrink: 0;
  }
  
  .marquee-animate {
    animation: marquee-animation linear infinite;
  }
  
  @keyframes marquee-animation {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%); /* Adjust as needed for smooth scrolling */
    }
  }
  
  /* Pause on hover */
  .marquee-content:hover {
    animation-play-state: paused;
  }
  

  /* sponsors marquee */
  body {
  min-height: 100vh;
}
.slider {
  height: 60px;
  position: relative;
  width: 100%;

  display: grid;
  place-items: center;
  overflow: hidden;
}
.slider::before,
.slider::after{
  position:absolute;
  background-image:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
  content:'';
  height:100%;width:25%;
  z-index:2;pointer-events:none;
}
.slider::before{
  left:0;
  top:0;
}
.slider::after{
  right:0;
  top:0;
  transform:rotateZ(180deg);
}


/* table div */
.table-content {
    position: relative;
    overflow-x: auto;
    touch-action: pan-y;
}

.table {
    table-layout: fixed;
}

.fixed-column {
    position: sticky;
    background: #f8f9fa;
    z-index: 1;
}

.fixed-column.order-column {
    left: 0;
}

.fixed-column.edit-column {
    right: 50px;
}

.fixed-column.publish-column {
    right: 50px;
}

.fixed-column.delete-column {
    right: 0;
}

.order-column {
    text-align: center;
}

.table tbody tr {
    cursor: grab;
    touch-action: manipulation;
    min-height: 48px;
    line-height: 1.5;
}

.table tbody tr:active {
    cursor: grabbing;
}

.sortable-chosen {
    background-color: #e9ecef;
    opacity: 0.8;
}

.fixed-column.order-column {
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.fixed-column.edit-column,
.fixed-column.delete-column,
.fixed-column.publish-column {
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    cursor: default;
}



/*  Marquee Slider  */

.slider {
    height: 60px;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.slider::before,
.slider::after {
    position: absolute;
    background-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    content: '';
    height: 100%;
    width: 25%;
    z-index: 2;
    pointer-events: none;
}
.slider::before {
    left: 0;
    top: 0;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slide-track {
    width: calc(var(--slide-width) * var(--num-slides));
    display: flex;
    animation: scroll var(--duration) linear infinite;
    justify-content: space-between;
}

.slide {
    width: var(--slide-width);
    height: 60px;
    display: grid;
    place-items: center;
    transition: 0.5s;
    cursor: pointer;
}
.slide:hover {
    transform: scale(0.8);
}
.slide img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--slide-width) * var(--num-original) * -1));
    }
}

@media screen and (max-width: 768px) {
    /* JS handles dynamic slide width */
}