.predictive-search-container {
    position: relative;
    width: 50%;
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background-color: #f5f5f5;
}

.result-item-error {
    padding: 10px;
    color: #d9534f;
}


.search-wrapper {
    position: relative;
    width: 50%;
    margin: 10px auto;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.search-all, .search-user-companies-admin {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    font-size: 14px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.search-all:focus, .search-user-companies-admin:focus {
    border-color: #7a7a7a;
    background: #fff;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 13px;
    color: #bbbbbb;
    font-size: 18px;
    pointer-events: none;
}

#search-results, #companies-groups-results {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    border: 1px solid #e0e9f3;
    box-shadow: 0 6px 20px rgba(34, 95, 158, 0.13);
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 14px;
    z-index: 1000;
    padding: 4px 0;
    animation: fadeIn 0.25s;
    display: none;
}

/* Estilo individual de cada resultado */
#search-results .search-result-item,
#companies-groups-results .search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 16px;
    color: #34495e;
    border-bottom: 1px solid #f0f5fa;
    transition: background 0.15s, color 0.15s;
}

/* Quitar borde al último resultado */
#search-results .search-result-item:last-child,
#companies-groups-results .search-result-item:last-child {
    border-bottom: none;
}

/* Hover y active sobre opciones */
#search-results .search-result-item:hover,
#companies-groups-results .search-result-item:hover,
#search-results .search-result-item.active,
#companies-groups-results .search-result-item.active {
    background: #f1f7fd;
    color: #1e90ff;
}

/* Iconos en ambos buscadores */
#search-results .result-icon,
#companies-groups-results .result-icon {
    margin-right: 12px;
    color: #c3cde6;
    font-size: 18px;
}

.policies{
    font-size: 0.8rem;
}