.matba-futuros {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.matba-status {
    margin-bottom: 12px;
    font-size: 14px;
    color: #F4F1E0;
}

.matba-status.is-online {
    color: #F4F1E0;
}

.matba-status.is-error {
    color: #F4F1E0;
}

.matba-group {
    margin-bottom: 22px;
    border-radius: 10px;
    overflow: hidden;
}

/* Título:
   Soja Rosario / Maíz Rosario / Trigo Rosario
*/
.matba-group-title {
    background: #E5DEB5 !important;
    color: #000000 !important;
    padding: 10px 14px;
    font-size: 20px;
    font-weight: 700;
}

/* Contenedor de la tabla */
.matba-table-wrap {
    width: 100%;
    overflow-x: auto;
}

/* Tabla */
.matba-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Encabezados */
.matba-table th {
    background: #E5DEB5 !important;
    color: #000000 !important;
    padding: 8px 10px;
    text-align: center;
    font-weight: 700;
    border-right: 1px solid #d2ca9d;
    border-bottom: 1px solid #d2ca9d;
}

/* Datos numéricos */
.matba-table td {
    padding: 7px 10px;
    text-align: center;
    background: #F4F1E0 !important;
    color: #000000 !important;
    font-weight: 400;
    border-bottom: 1px solid #d2ca9d;
}

/* Nombre del instrumento */
.matba-table td.instrumento {
    text-align: left;
    background: #E5DEB5 !important;
    color: #000000 !important;
    font-weight: 400;
}

/* Variación positiva */
.matba-table td.is-positive {
    color: #008000 !important;
}

/* Variación negativa */
.matba-table td.is-negative {
    color: #c00000 !important;
}

/* Variación neutra */
.matba-table td.is-neutral {
    color: #000000 !important;
}

/* Última actualización */
.matba-updated {
    margin-top: 10px;
    font-size: 13px;
    color: #F4F1E0 !important;
}

/* Bordes redondeados del primer encabezado */
.matba-table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.matba-table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

/* Bordes redondeados de la última fila */
.matba-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.matba-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Eliminamos el borde inferior de la última fila */
.matba-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 700px) {

    .matba-table {
        min-width: 720px;
    }

}