/* Selectores de tipo */
.select-tipo {
    min-width: 150px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select-tipo:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

/* Tabla de efectividades */
#tabla-efectividad {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#tabla-efectividad table {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: collapse;
}

#tabla-efectividad td {
    width: 20%;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    padding: 4px;
    border: 1px solid #dee2e6;
    font-size: 1rem;
}

/* Colores de efectividad */
.eficaz {
    color: green;
    font-weight: bold;
}

.no-eficaz {
    color: red;
    font-weight: bold;
}

/* Botón */
.btn-danger {
    font-weight: 500;
}