#search-bar-container {
    background-color: #f0f2f5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center; /* Center the search bar */
}

/* Container for the input and button */
.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px; /* Adjust max width as needed */
}

#company-search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px; /* Pill shape */
    background-color: white;
    color: black;
    padding-right: 100px; /* Make space for the button */
}

#company-search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 90px;
    border: none;
    background-color: #007bff; /* Blue button */
    color: white;
    border-radius: 20px; /* Pill shape */
    cursor: pointer;
    font-weight: bold;
}
#company-search-button:hover {
    background-color: #0056b3;
}

/* Styles for the dropdown and modal */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}
.search-option {
    padding: 10px 15px;
    cursor: pointer;
}
.search-option:hover {
    background-color: #f0f2f5;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}
.search-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2em;
    border-radius: 8px;
    text-align: center;
    z-index: 2001;
}