body, html {
    margin: 0;
    padding: 0;
}
        
w-300r{ width:300rem !important;  }
h-250r{ width:250rem !important; }

.msg-aviso {
  display: block;           /* Para que quede debajo del texto principal */
  font-size: 0.85em;        /* Un poco más pequeño que el texto normal */
  color: #d9534f;           /* Rojo suave (Bootstrap "danger") */
  margin-top: 4px;          /* Separación con el texto superior */
  font-style: italic;       /* Para diferenciarlo como aviso */
}




/* 

*/

/* nomenclaturas */

.alerta{
    padding: 14px 18px;
    border-radius: 6px;
    margin: 14px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    box-shadow: 0px 3px 6px
    rgba(0,0,0,0.1)
}

.alerta-success{
    background: #e6f9ec;
    color: #276738;
    border-left: 6px solid #28a745;
}
.alerta-danger{
    background: #fdecea;
    color: #8a1c1c;
    border-left: 6px solid #dc3545;
}

.alerta{
    animation: fadeIn 0.5s ease-in-out;
}



/* ---- ESTADOS FINANCIEROS ---- */
.ef-container {
    background: #ffe5e5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 100%;
}

.ef-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ef-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.ef-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ef-table thead {
    background: #f5f7fa;
}

.ef-table th,
.ef-table td {
    padding: 10px 12px;
    border: 1px solid #e2e6ea;
    text-align: left;
}

.ef-actions {
    display: flex;
    gap: 8px;
}

/* ---- BOTONES ---- */
.ef-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease;
}

.ef-btn i {
    margin: 0;
}

.ef-btn:hover {
    opacity: 0.85;
}

/* Colores específicos */
.ef-btn-nuevo {
    background: #3498db;
}

.ef-btn-editar {
    background: #f1c40f;
}

.ef-btn-inventario {
    background: #a5772c;
}

.ef-btn-generar {
    background: #7e848a;
}

/* crear estodo */


