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;
}

.padd{
   margin:5px;
}

.boxit
{
    border:1px solid #808080;
    padding:15px;
    margin:5px;
    border-radius:5px;

}

.labelit
{
    margin:2px;
}

.bg-brown {
    background-color: #E4D00A;
}
.nav-link:hover {
    background-color: #f0e68c; /* Change this to your preferred highlight color */
    color: #FFF; /* Optional: change text color on hover */
    border-radius:5px;
    
}
.banner-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distorting */
    position: absolute; /* Position the image absolutely */
    top: -50px; /* Move the image up by 50px, adjust as needed */
}
.navbar {
    position: absolute;
    bottom: 0; /* Position the navbar at the bottom of the banner */
    width: 100%;
}

.navbar-brand {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-bar {
    background-color: #B5DD92; /* Semi-transparent black bar */
    padding: 10px 0; /* Add some padding for better spacing */
    border-bottom: 1px solid #808080;
    border-top: 1px solid #808080;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the nav bar */
}

.navbar-nav .nav-link {
    color: white; /* Ensure the links are visible */
}

.cat-search{
    padding:10px;
}
label {
    line-height:2;
    margin-right:10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px; /* Optional: Adds space between columns */
}

.grid-item {
    background-color: #f0f0f0; /* Optional: Adds background color for visibility */
    padding: 10px; /* Optional: Adds padding for content */
    text-align: center; /* Optional: Centers text */
}
.modal-scroll {
    max-height: 70vh; /* Adjust as needed */
    overflow-y: auto;
}