.price-table-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30vh;
}

.price-table-container h2 {
    text-align: center;
    font-family: 'Indie Flower', cursive;
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: Arial, sans-serif;
}

.price-table th, .price-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.price-table th {
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
    font-size: 0.9em;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.price-table tbody tr:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

.price-table td {
    font-size: 1em;
    color: #555;
}

.price-table tbody tr td:nth-child(2),
.price-table tbody tr td:nth-child(3) {
    text-align: center;
}
