body {
    background-size: cover; /* Cover the entire page */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-position: center center; /* Center the image */
    font-family: 'Arial', sans-serif;
    background-color: #D3D3D3;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
}
h1 {
    text-align: center;
    padding: 20px;
    padding-bottom: 0%;
}

p {
    text-align: center;
    margin-bottom: 30px;
}

.event {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px; /* Increased space between events */
    padding: 20px; /* Increased padding inside each event */
    font-weight: bold;
    font-size: x-large;
}
.event-summary {
    flex: 2; /* allows summary to take more space */
    padding-right: 10px; /* Space between summary and time */
}
.event-time {
    flex: 1;
    padding: 0 10px; /* Space inside the time column */
}
.event-location {
    flex: 1;
    font-weight: bold;
    font-size: larger;
    text-align: right; /* Aligns the location text to the right */
}
.logo-container {
    text-align: center; /* Center the logo container */
    margin-top: 50px; /* Space from the content above */
    margin-bottom: 20px; /* Space from the bottom of the page */
}

.logo-container img {
    max-width: 10%; /* Ensures the logo is responsive */
    height: auto; /* Maintain aspect ratio */
}

.location-header {
    text-align: right;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 7px;
    font-size: xx-large;
}
hr {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dropzone {
      border: 2px dashed #007bff;
      background: #f9f9f9;
      padding: 2rem;
      margin: 30px;
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.imagens {
    top: 20;
    margin-top: 20px;
}

.swiper {
  width: 1400px;
  height: 700px;
  margin: auto;
  margin-top: 20px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Centralizar imagem */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#imagem {
    background-color: #fff;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
}

#btn_remover {
    width: 250px;
    height: 50px;
}

.galeria-imagens {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: left;
  margin: 20px;
  margin-left: 30px;
}

.imagem-item { 
  box-sizing: border-box;
}