/*Adicione seu css customizado neste arquivo*/

.ho-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ho-col {
    flex: 1;
    margin-bottom: 20px;
}

.ho-table-container {
    overflow: auto;
}

@media screen and (max-width: 1024px) {
    .ho-row {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
}