html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

img {
    border: 1px solid gray;
    border-radius: 5px;
}

p {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 1.3em;
    text-wrap: pretty;
}

body.index p {
  text-align: center;
}


.fixed-width-time {
    width: 100px; /* Adjust the width as needed */
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.image-gallery img {
  border: 1px solid gray;
  border-radius: 5px;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

p .link{
    font-size: 1em;
}

.link {
  display: inline-block;
  font-size: 1.3em; /* Make the link text larger */
  color: #007bff; /* Bootstrap primary color */
  text-decoration: none; /* Remove underline */
}

.link:hover {
  text-decoration: underline; /* Add underline on hover */
}

.hotel-overview img {
  border: 3px solid gray;
  border-radius: 5px;
  margin-top: 20px;
  max-width: 100%;
  height: auto;
}

.footnotes {
  margin-top: -10px;
  margin-bottom: 20px;
}

.footnote {
  font-size: 0.85em;
  color: #6c757d;
  margin-top: -10px;
  margin-bottom: 30px;
  font-style: italic;
}

/* TableOverview Styles */
.tables-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.table-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 250px;
    margin-bottom: 20px;
}
.table-name {
    background-color: #80cbc4;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 0;
}
.guest-list {
    list-style-type: none;
    padding: 0;
}
.guest-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.guest-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
  p {
      margin-top: 30px;
      margin-bottom: 30px;
  }
  
  .link {
      display: inline-block;
      margin: 5px 0;
  }
  
  .email-links {
      text-align: center;
  }

    .last2 {
        display: none
    }
    
    .tables-container {
        flex-direction: column;
        align-items: center;
    }
    .table-card {
        width: 90%;
    }
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.navigation-buttons .btn {
    padding: 10px 30px;
    font-size: 1.1rem;
}

