.input {
    position: relative;
    margin-top: 15px;
}

.input__label {
    position: absolute;
    left: 5px;
    top: -12px;
    padding: 0 2px;
    margin: 3px 3px 3px 3px;
    white-space: nowrap;
    transform: translate(0, 0);
    transform-origin: 0 0;
    background: white;
    transition: transform 120ms ease-in;
    font-weight: bold;
    line-height: 1.2;
    color: #575757;
    border-radius: 5px;
    z-index: 10;
}

.inputs{
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 30% 30% 10%;
    column-gap: 1%;
}
.find_section{
    background-color: #ffffff;
    box-shadow: 0px 3px 5px -3px #00000033;
    padding: 20px;
    margin-top: 10vh !important;
    position: relative;
    z-index: 99;
}
@media screen and (max-width: 768px) {
    .find_section{
        margin-top: 5vh !important;
    }
}
@media screen and (max-width: 992px) {
    .inputs{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .searchBar{
        width: 100% !important;
    }
    .searchBtn{
        background-color: #3e8cf9 !important;
        width: 100%;
    }
}
.searchBtn{
    background-color: #3e8cf9 !important;
    height: 40px;
}
/* Styling for the container */
.searchBarWithDropdown {
    position: relative;
    display: flex;
    border: 1px solid #ccc; /* Example border style */
    align-items: center; /* Aligns items vertically in the center */
    border-radius: 0.25rem;
}


/* Styling for the Time Range Type Selector Dropdown */
.searchBarWithDropdown select.form-control {
    position: relative;
    width: 40%; /* Set width to 20% of the container */
    border: none; /* Removes individual border */
    border-radius: 0 10px 10px 0; /* Rounded corners on the right side */
}
.dateSearch input{
    position: relative;
    border: none; /* Removes individual border */
}
.dateSearch{
    position: relative;
    width: 60%; /* Set width to 20% of the container */
    border: none; /* Removes individual border */
    margin: 0 !important; /* Space between input and dropdown */
    
    border: none !important; /* Removes individual border */

    border-radius: 10px 0 0 10px; /* Rounded corners on the right side */

}

.calendar-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.popup-content {
    width: 90%;
    height: 90%;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    padding: 20px;
}
