input.search-input {
    background-color: transparent !important;
    border: 0px solid black !important;
    outline: 0 !important;
    --bs-text-opacity: 1 !important;
    color: var(--text) !important;
    font-size: 20px !important;
}

input.search-input::-webkit-input-placeholder,
input.search-input::placeholder {
    --bs-text-opacity: 1;
    color: var(--text) !important;
    font-size: 20px;
}

.search-results {
    position: absolute;
    top: 72px;
    left: 22px;
    right: 22px;
    max-height: 70vh;
    overflow: auto;
    background: linear-gradient(145deg, #00363e, #011317);
    border-radius: 0 0 24px 24px;
    padding: 16px 0;
    z-index: 2000;
    box-shadow: 0 4px 6px rbga(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.search-section-title {
    color: var(--verde);
    margin-bottom: 10px;
    margin-left: 16px;
}

.search-section-list {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
}

.search-section-list li {
    transition: all 0.14s linear;
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    height: 60px;
    display: flex;
    align-items: center;
}

.search-section-list li a {
    text-decoration: none;
    display: block;
    width: 100%;
    color: var(--text) !important;
}

.search-section-list li.no-results {
    cursor: default;
}

.search-section-list li:not(.no-results):hover {
    background-color: var(--verde-chat);
    border-radius: 6px;
}
.search-section-list li:not(.no-results):hover a,
.search-section-list li:not(.no-results):hover i {
    color: #fff !important;
}

.search-results.open {
    display: block;
}

.search-results::-webkit-scrollbar {
    width: 4px; /* Width of the entire scrollbar */
}

.search-results::-webkit-scrollbar-track {
    background: #2f3349; /* Color of the track */
    border-radius: 0 4px 4px 0;
    transition: all 0.3s linear;
}

.search-results:hover::-webkit-scrollbar-track {
    background: #888; /* Color of the track */
}

.search-results::-webkit-scrollbar-thumb {
    background-color: #2f3349;
    border-radius: 10px;
    border: 3px solid #2f3349;
    transition: all 0.3s linear;
}

.search-results:hover::-webkit-scrollbar-thumb {
    background-color: #888;
    border: 3px solid #f1f1f1;
}

.withdraw-hidden {
    display: none !important;
}
