.navbar-light .navbar-nav .nav-link {
    color: #ffff;
  }


  .main_section{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./background.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
  }

  .border-box{
    border-right: 1px solid white;
  }

  .chat-box {
    background-color: #f8f9fa;
    border-radius: 5px;
  }
  
  .chat-message {
    margin-bottom: 10px;
    color: white;
  }
  
  .chat-message strong {
    color: #007bff;
  }

  .section_schedule {
    background-image: url('/Cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;  }
  
  .section_schedule::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.652); /* Μαύρο overlay με 50% διαφάνεια */
    z-index: 1; /* Τοποθέτησέ το πάνω από το background */
  }
  
  .section_schedule > * {
    position: relative; /* Διασφαλίζει ότι το περιεχόμενο θα είναι πάνω από το overlay */
    z-index: 2;
    color: white; /* Κάνε το κείμενο λευκό για καλύτερη αντίθεση */
  }
  
  .Shows{
    margin: 5rem;
  }

  .show_title{
    font-size: 35px;
  }

  .show_banner{
    width: 24rem;
  }


  /* Για οθόνες μικρότερες από 992px (π.χ. tablets) */
@media (max-width: 991px) {
  .main_section {
    height: auto;
    padding: 2rem;
  }

  .border-box {
    border-right: none;
  }

  .show_title {
    font-size: 28px;
  }

  .show_banner {
    width: 18rem;
  }

  .Shows {
    margin: 2rem;
  }
}

/* Για οθόνες μικρότερες από 768px (π.χ. κινητά) */
@media (max-width: 767px) {
  .navbar-light .navbar-nav .nav-link {
    text-align: center;
    padding: 10px;
  }

  .main_section {
    flex-direction: column;
    text-align: center;
  }

  .section_schedule {
    height: auto;
    padding: 3rem 1rem;
  }

  .show_title {
    font-size: 24px;
  }

  .show_banner {
    width: 100%;
  }

  .Shows {
    margin: 1rem;
  }
}

/* Για πολύ μικρές οθόνες (κάτω από 480px) */
@media (max-width: 480px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
  }

  .show_title {
    font-size: 20px;
  }

  .show_banner {
    width: 100%;
  }

  .chat-message {
    font-size: 14px;
  }
}
