body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  color: white;
  text-align: center;
  padding: 15px 0;
}

.categories {
  padding: 20px;
  flex-grow: 1; /* Allows the content area to grow and fill the space */
}

.category {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
  margin: 10px 0;
}

.side-panel {
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border-left: 1px solid black;
  height: 100%;
  z-index: 1000; /* Ensure it's above other elements */
}

.side-panel.open {
  width: 100%; /* Full width on smaller devices */
  max-width: 1200px; /* Limit width on larger devices */
}

.side-panel table {
  border-collapse: collapse;
  width: 100%;
}

.side-panel th,
.side-panel td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
  font-size: 20px; /* Adjusted for better readability on various devices */
}

button {
  cursor: pointer;
  padding: 10px 20px;
  margin: 10px;
  background-color: #333;
  color: white;
  border: none;
  font-size: 16px;
}

footer {
  background-color: #025207;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: auto; /* Pushes the footer to the bottom */
}

.col-md-4 img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.col-md-4 p {
  text-align: justify;
  margin-bottom: 20px;
}

.col-md-4 .btn-block {
  margin-bottom: 20px;
}

.col-md-4 iframe {
  width: 100%;
  height: 250px; /* Adjust based on your preference */
  margin-bottom: 20px;
}

.col-md-4 .btn-social-icon {
  margin-right: 10px;
  margin-bottom: 20px;
}

.social-media-buttons .btn {
  margin: 0 10px; /* Add margin for spacing */
}

/* If you want to ensure buttons don't stretch, add: */
.social-media-buttons .btn {
  flex-grow: 0;
}

/* ABOUT US  */
/* .navbar-brand,
.nav-link {
  color: #fff !important;
} */

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

/* Main content */
main {
  padding: 20px;
  margin-top: 20px;
  /* background: #fff; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #007bff;
}

/* Styling for list items in main content */
main ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Responsive design adjustments */
@media (max-width: 576px) {
  header,
  main,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* END OF ABOUT US  */

.map-container iframe {
  width: 100%;
  height: 300px; /* Adjust as needed */
  border: none;
}
