/*Search box*/
#search-container {
    display: flex;
    align-items: center;
}

#search-box {
    display: none;
}

#search-input {
    border: 1px solid #ccc;
    padding: 5px;
    margin-right: 5px;
}

#search-btn {
    background-color: #70B3D2;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#search-results-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#close-btn {
    float: right;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
}

    #close-btn:hover {
        color: #333;
        cursor: pointer;
    }

#search-results {
    list-style-type: none;
    padding: 0;
    margin: 0;
    list-style: none !important;
}

    #search-results li a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #24265D;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s;
    }

        #search-results li a:hover {
            background-color: #f8f9fa;
        }

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media (max-width:375px) {
    #search-input {
        width: 100px !important;
    }
}
