/* Estilos específicos para Tabla de Equivalencias MZM */
.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: white !important;
}

.tech-table th {
    background: rgba(227, 30, 36, 0.2);
    color: #e31e24;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 12px;
    border-bottom: 2px solid #e31e24;
    text-align: left;
}

.tech-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.mzm-fraction {
    color: #e31e24;
    font-weight: 900;
    font-style: italic;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

/* Estilo para los inputs de la página de equivalencias */
#quickMm, #searchInput {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

#quickMm:focus, #searchInput:focus {
    border-color: #e31e24;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.2);
}