/* Buscador de Menú - Estilos */

#menu-search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1050;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#menu-search-dropdown.show {
    display: block;
}

.search-box {
    position: relative;
}

.search-box .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #878a99;
    font-size: 16px;
}

.search-box input {
    padding-left: 38px;
    border: 1px solid #e9ebec;
}

.search-box input:focus {
    border-color: #405189;
    box-shadow: 0 0 0 0.2rem rgba(64, 81, 137, 0.1);
}

#menu-search-results .list-group-item {
    border-left: 0;
    border-right: 0;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

#menu-search-results .list-group-item:first-child {
    border-top: 0;
}

#menu-search-results .list-group-item:last-child {
    border-bottom: 0;
}

#menu-search-results .list-group-item:hover {
    background-color: #f3f6f9;
    border-left-color: #405189;
    border-left-width: 3px;
    padding-left: calc(1rem - 2px);
}

#menu-search-results .list-group-item h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #212529;
}

#menu-search-results .list-group-item small {
    font-size: 12px;
    color: #878a99;
}

#menu-search-results .list-group-item mark {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 2px;
    font-weight: 600;
}

#menu-search-results::-webkit-scrollbar {
    width: 6px;
}

#menu-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#menu-search-results::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#menu-search-results::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Dark mode */
[data-layout-mode="dark"] #menu-search-dropdown {
    background: #2a2f34;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-layout-mode="dark"] .search-box input {
    background: #32383e;
    border-color: #404954;
    color: #ced4da;
}

[data-layout-mode="dark"] .search-box .search-icon {
    color: #878a99;
}

[data-layout-mode="dark"] #menu-search-results .list-group-item {
    background: #2a2f34;
    border-color: #404954;
    color: #ced4da;
}

[data-layout-mode="dark"] #menu-search-results .list-group-item:hover {
    background-color: #32383e;
}

[data-layout-mode="dark"] #menu-search-results .list-group-item h6 {
    color: #ced4da;
}

[data-layout-mode="dark"] #menu-search-results .list-group-item small {
    color: #878a99;
}

[data-layout-mode="dark"] #menu-search-results .list-group-item mark {
    background-color: #664d03;
    color: #ffecb5;
}

/* Responsive */
@media (max-width: 576px) {
    #menu-search-dropdown {
        width: 320px !important;
        right: -50px;
    }
}
