/* Remove unwanted scrollbar in Pesupaketid / prices cards on desktop */

.prices-section .tables {
    align-items: stretch;
}

.prices-section .table-card {
    overflow: visible;
}

.prices-section .table-wrap {
    overflow-x: visible;
    width: 100%;
}

.prices-section table {
    width: 100%;
    table-layout: auto;
}

.prices-section th,
.prices-section td {
    white-space: normal;
}

.prices-section td:not(:first-child),
.prices-section th:not(:first-child) {
    white-space: nowrap;
}

/* Give Pesupaketid table a little more room than Lisateenused */
.prices-section .tables {
    grid-template-columns: 1.15fr 1fr;
}

/* If screen is too small, allow normal responsive scroll only on mobile/tablet */
@media (max-width: 900px) {
    .prices-section .table-card {
        overflow: hidden;
    }

    .prices-section .table-wrap {
        overflow-x: auto;
    }

    .prices-section table {
        min-width: 680px;
    }
}
