/* Fondo oscuro semitransparente que cubre toda la pantalla */
.modal_empresasVinculadas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Caja central del modal */
.modal_empresasVinculadas_box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #333333;
}

/* Formato para cada opción seleccionable */
.empresa_item_opcion {
    padding: 12px 15px;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.empresa_item_opcion:hover {
    background-color: #f0f4f8;
    border-color: #007bff;
}

.empresa_nombre {
    font-weight: bold;
    color: #004085;
}

.empresa_nit {
    font-size: 0.85em;
    color: #6c757d;
}