.dropdown-select {
    position: relative;
}

#dropdownInput {
    padding: 5px;
    border: 1px solid #ccc;
}

#dropdownOptions {
    list-style: none;
    padding: 0;
    position: absolute;
    display: none;
    border: 1px solid #ccc;
    background-color: #fff;
    width: -webkit-fill-available;
    max-height: 130px; 
    overflow-y: auto;  
    z-index: 9;
}

#dropdownOptions li {
    padding: 5px;
    text-align: start;
    font-family: Inter;
    font-size: 14px;
}

#dropdownOptions li:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

#dropdownOptions li.selected {
    background-color: #e0e0e0;
}

.dropdown-select.active #dropdownOptions {
    display: block;
    z-index: 9;
}

#dropdownInput::placeholder {
    text-transform: none;
}

.api-search-card .card-body {
    padding: 1.25rem !important;
}

.row {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
}
.divider {
    border-right: 1px solid #a4d0f687;
}
.no-divider {
    border-right: none;
}
.animated-item {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}
.animated-item:nth-child(1) {
    animation-delay: 0.3s;
}
.animated-item:nth-child(2) {
    animation-delay: 0.6s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 767px) {
    .divider {
        border-right: 0px !important;
    }
    .search-bar {
        margin-bottom: 10px !important;
    }
    .search-panel-header {
        font-size: 1.1rem !important;
    }
    .search-panel-sub-header {
        font-size: 1.5rem !important;
    }
}