body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 10px;
    font-size: 50px; /* Triplica el tamaño base (16px x 3) */
}

form, table {
    margin: 20px 0;
}

/* Controles de formulario (texto grande) */
input, select, button {
    padding: 10px;
    margin: 5px;
    font-size: 48px; /* Triplicado */
    line-height: 1.2;
}

/* Placeholder del input también grande */
input::placeholder {
    font-size: 48px;
}

/* Botón */
button {
    background-color: #1e88e5;
    color: white;
    border: none;
    border-radius: 15px;
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Encabezados y celdas con texto grande */
th, td {
    padding: 8px;
    border-bottom: 1px solid #444;
    font-size: 15px; /* Triplicado */
}

/* Contenedores de saldos */
.saldos-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lado {
    width: 30%;
    padding: 10px;
    border-radius: 10px;
}

/* Colores de tarjetas */
.damy {
    background-color: #2e7d32;
}

.harry {
    background-color: #1565c0;
}

.centro {
    background-color: #FF0000;
    width: 30%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

/* Botón/Link de efectivizar */
.efectivizar-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fbc02d;
    color: black;
    text-decoration: none;
    border-radius: 5px;
   /* Colorear filas según el tipo */
	
tr.gasto {
  background-color: #b71c1c;
  color: #ffffff;
}
tr.ingreso {
  background-color: #a5d6a7;
  color: #000000;
}


/* Mantener el encabezado sin afectar */
table thead tr,
table tr.encabezado {
    background: transparent;
    color: inherit;
}
