/*
Source - https://stackoverflow.com/a
Posted by nifoem bar, modified by community. See post 'Timeline' for change history
Retrieved 2025-12-29, License - CC BY-SA 4.0
*/

/*
.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: black;
  background-size: 100%, 100%;
  border-radius: 50%;
  border: 1px solid black;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: red;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: red;
}
*/

/* Apply a specific background color when the menu is shown on small screens */
@media (max-width: 992px) { /* Adjust breakpoint as needed */
  .navbar-collapse.show {
    background-color: rgb(149 165 166 / 0.85); /* Your desired color */
    /* Add padding if necessary */
    padding: 1rem;
  }
}

body {
			padding-top: 72px; /* Adjust this value to match your navbar's actual height */
}