.price-table-container {
    width: 100%;
    margin: 0 auto;
}

.price-table {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);

    font-family: var(--main-font), sans-serif;
    font-size: 1rem;
    font-weight: normal;

    margin: 0 auto;
}

.price-table table {
    width: 100%;
    border-spacing: 0.5rem;
}

.price-table th {
    font-weight: bold;
}

.price-table table, td, th {
    padding: 0.5rem;
}

.price-table table tr {
    height: 0.5rem;
}

.price-table table tr:nth-child(odd) {
    background-color: var(--light);
}

.price-table-container p {
    padding-top: 0.5rem;
    margin: 0;
}