.navbar-expand-md .navbar-brand {
    min-width: 14.625rem;
}

.search-box {
    border: none;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    width:100%;
}

.search-box:focus {
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.flex-grow-1 {
    flex-grow: 1;
}

.dropdown-search-history {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    display: none;
    background-color: #fff; /* Add background color */
}

.dropdown-search-history a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-search-history a:hover {
    background-color: #f5f5f5;
}