html {
  scroll-behavior: smooth; /* Enables smooth scrolling */
  scroll-padding-top: 100px; /* Adds some space above the section (optional, adjust if needed) */
}
/* Container for the calendar */
.calendar-container {
    max-width: 1920px  /* Make it responsive based on screen size */
    margin: 50px auto;  /* More space around the calendar */
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);  /* Stronger shadow for more depth */
    overflow: hidden;  /* Prevent content overflow */
}

/* Make the iframe responsive and maintain proportions */
.calendar-container iframe {
    width: 100%;
    height: 900px;  /* Larger height for more content visibility */
    border-radius: 12px;  /* Matching border-radius for the iframe */
    border: 2px solid #ddd;  /* Light border around the iframe */
    box-sizing: border-box;  /* Ensure padding and border are part of the width/height calculation */
}

/* Media query for screens larger than 1200px */

.jumbotron{
	margin-left: auto;
	margin-right: auto;
}
.banner{
	margin-left: auto;
	margin-right: auto;
}
.smalltext {
    background-color: rgba(167,164,164,0.50);
    font-family: Raleway;
}
h2 {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}
 .gallery {
    column-count: 3;
    column-gap: 15px;
  }
  .gallery a {
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
  }
  .gallery img {
    width: 100%;
    border-radius: 8px;
    display: block;
  }
  @media (max-width: 992px) {
    .gallery {
      column-count: 2;
    }
  }
  @media (max-width: 600px) {
    .gallery {
      column-count: 1;
    }
  }
button {
    font-size: 20px;
    padding: 15px 30px;
    background-color: red/* Optional: You can add a background color */
    color: red; /* Optional: Set text color */
    border: none; /* Optional: Remove border */
    border-radius: 5px; /* Optional: Add rounded corners */
    cursor: pointer; /* Optional: Change cursor to pointer on hover */
}

button:hover {
    background-color: #000EFF; /* Optional: Change background color on hover */
}
/* Basic styles for the admin panel */
#admin-panel {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#calendar {
    margin-top: 40px;
}

.calendar-container {
    max-width: 1920px;
    margin: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-cell {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

.day-cell:disabled {
    background-color: #ccc;  /* Grayed-out background for unavailable days */
}

.btn-success {
    background-color: green;
    color: white;
}

.btn-secondary {
    background-color: gray;
    color: white;
}

input[type="date"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
@media (min-width: 1200px) {
    .calendar-container {
        max-width: 80%;  /* Adjust max-width for larger screens */
    }
}

/* Media query for screens larger than 1024px */
@media (min-width: 1024px) {
    .calendar-container {
        max-width: 85%;  /* Adjust max-width for smaller large screens */
    }
}

/* Media query for screens larger than 768px */
@media (min-width: 768px) {
    .calendar-container {
        max-width: 90%;  /* Adjust max-width for medium screens */
    }
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .calendar-container {
        max-width: 95%;  /* Adjust max-width for smaller screens */
        padding: 20px;  /* Reduce padding for smaller screens */
    }
    .calendar-container iframe {
        height: 650px;  /* Adjust height for medium screens */
    }
}

/* Media query for screens smaller than 480px (phones) */
@media (max-width: 480px) {
    .calendar-container {
        max-width: 100%;  /* Make it full width for smaller phones */
        padding: 10px;  /* Reduce padding even more for very small screens */
    }
    .calendar-container iframe {
        height: 500px;  /* Adjust height for smaller phones */
    }
}
/* Additional media query for responsiveness */
@media (max-width: 1200px) {
    .calendar-container iframe {
        height: 750px;  /* Decrease height for medium-large screens */
    }
}

@media (max-width: 1024px) {
    .calendar-container iframe {
        height: 650px;  /* Decrease height for smaller tablets */
    }
}

@media (max-width: 768px) {
    .calendar-container iframe {
        height: 600px;  /* Adjust height for medium screens */
    }
}

@media (max-width: 480px) {
    .calendar-container iframe {
        height: 500px;  /* Adjust height for smaller phones */
    }
}
@media (hover: none) and (pointer: coarse) {
  .navbar-toggler:active,
  .navbar-toggler:focus {
    background-color: #ffcc00; /* Your hover color for mobile tap */
  }
}.btmbackground a:hover {
	background-color: white;
}
