/*
 * tornometal.css
 * Estilos globales del proyecto Tornometal
 * Complementa Bootstrap 5
 */

/* ============================================
   TIPOGRAFÍA
   Bootstrap pone negrita en headings; la sacamos
   ============================================ */

h5, h6 {
    font-weight: normal;
}

/* Título de sección estándar */
.tm-titulo {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

a {
    text-decoration: none;
}

/* Botón de selección de archivo */
.file-orange {
    background-color: #feb272;  /* orange-300 */
    color: #5a2d0c;
    border: 1px solid #fd7e14;
}

.file-orange:hover {
    background-color: #fd9843;
}

/* ============================================
   BOTONES ESTÁNDAR
   Todos los botones llevan texto marrón oscuro
   ============================================ */

.btn-tm {
    color: #5a2d0c !important;  /* orange-900 aprox. */
    font-size: 0.85rem;
}

.btn-tm:hover {
    color: #3b1c07 !important;
}

/* Cancelar / Volver → rojo */
.btn-tm-cancel {
    background-color: #e35d6a;  /* red-400 */
    color: #5a2d0c !important;
    font-size: 0.85rem;
}

.btn-tm-cancel:hover {
    background-color: #d44a58;
    color: #3b1c07 !important;
}

/* Aceptar / Usar esta → teal */
.btn-tm-accept {
    background-color: #79dfc1;  /* teal-300 */
    color: #5a2d0c !important;
    font-size: 0.85rem;
}

.btn-tm-accept:hover {
    background-color: #5fd3b0;
    color: #3b1c07 !important;
}
