.cover-music {
    height: 60vh;
    background-image: url('../img/cover-music.JPG');
    background-size: cover;
    background-attachment: local; /* Makes sure the background scrolls with the content */
    position: relative; 
    background-repeat: no-repeat;
    background-position: center;
}

.cover-live {
    height: 60vh;
    background-image: url('../img/cover-live-2.JPG');
    background-size: cover;
    background-attachment: local; /* Makes sure the background scrolls with the content */
    position: relative; 
    background-repeat: no-repeat;
    background-position: center;
}

.header-music {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 10vh;
    min-height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #cccfd3a0; 
    z-index: 1000;
}

.header-live {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 10vh;
    min-height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #cccfd3bb; 
    z-index: 1000;
}

.spotify-container {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    padding-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cover-contact {
    height: 60vh;
    background-image: url('../img/cover-contact.JPG');
    background-size: cover;
    background-attachment: local; /* Makes sure the background scrolls with the content */
    position: relative; 
    background-repeat: no-repeat;
    background-position: center;

}



.contact-form-container {
    background-color: #ffffff;
    padding: 20px;
    margin: 30px;
    border: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #282728;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.contact-form-container h2 {
    margin-bottom: 20px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    text-align: center;
    align-items: center;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form-container button {
    width: 100%;
    padding: 10px;
    background-color: #282728;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form-container button:hover {
    background-color: #383738;
}

#formMessage {
    margin-top: 10px;
    color: #28a745;
}


  /* Basic styling for the table */
  table {
    border-collapse: collapse;
    width: 80%;
    display: none; /* Initially hide the table */
  }

  tr, td {
    border: none;
    text-align: left;
    padding: 8px;
  }


  .td-button {
    border: none;
    text-align: right;
    padding: 8px;
  }


  tr {
    border: 1px solid #dddddd;
    background-color: #f2f2f2;
  }

  .venue {
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .buyTicketsButton {
    display: none;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
  }

  .buyTicketsButton:hover {
    background-color: rgb(144, 221, 103);
}

  /* Styles for the loading icon */
  .loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    padding: 60px auto;
  }

  .loading-icon {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #282728; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 60px auto;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .live-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; /* Adjust as needed */
    padding: 30px auto 60px auto;
    padding-bottom: 60px;
  }

  .venue-text,
.date-text {
    margin-top: 5px;
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-bottom: 0px;
  text-transform: none; 
}

.date-text{
    margin-top: 5px;
  font-size: 14px;
  color: #666;
}