/* Contenedor relativo para posicionar los resultados */
.global-search-wrapper {
    position: relative;
    width: 100%;
}

.global-search-input {
    background-color: #ffffff !important;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding-left: 40px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.global-search-input:focus {
    background-color: #fff;
    border-color: #495057;
    box-shadow: 0 0 0 4px rgba(73, 80, 87, 0.1);
}

.search-icon-overlay {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    pointer-events: none;
}

/* Lista de Resultados Flotante */
.global-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 8px;
    z-index: 1050;
    display: none; /* Oculto por defecto */
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #f0f0f0;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.search-category-header {
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #adb5bd;
    background-color: #fff;
    letter-spacing: 0.5px;
}