/* Custom top bar styles */
.navbar {
    background-color: #000;  /* Set the navbar background to black */
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2); /* Add a white shadow at the bottom */
    display: flex;
    align-items: center; /* Center the content vertically */
    justify-content: space-between; /* Ensure space between the logo and the icon */
    padding-left: 20px;
    padding-right: 20px;
    min-height: 7vh;
}

.navbar img {
    height: 60px; /* or adjust as needed */
    max-height: 100%;
    width: auto;
    object-fit: contain;
    padding: 5px 0; /* optional: adds a little breathing room */
}

/* Hamburger icon container (button) */
.navbar-toggler {
    border: none; /* Remove the border */
    background: transparent; /* Remove background */
    display: flex;
    align-items: center; /* Vertically center the icon */
    justify-content: center; /* Horizontally center the icon */
    padding-left: 0px;
    padding-right: 0px;
}

/* FontAwesome hamburger icon */
.navbar-toggler-icon {
    color: white; /* White icon */
    font-size: 24px; /* Adjust the size of the icon */
    display: inline-block; /* Ensure the icon is inline-block */
    line-height: 1; /* Adjust line height to remove extra space around the icon */
    height: 100%; /* Ensure the icon takes full height of its container */
    text-align: left; /* Ensure the icon is centered horizontally */
    vertical-align: middle; /* Vertically align the icon in its container */
}

/* Search icon styles */
.search-icon {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Search box (hidden by default) */
#search-box {
    width: 100%;
    padding: 10px;
    padding-top: 20px;
    background-color: #222;
    color: white;
    position: fixed;
    top: 7vh; /* Position below the top bar */
    left: 0;
    display: none; /* Hidden by default */
    transition: 0.3s;
}