.table-container {
    overflow-x: auto;
    display: flex;
    justify-content: center;
}

.cost-table {
    width: 50%; /* Ensures table takes full width within its container */
    max-width: 1200px; /* Adjust as needed */
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: Arial, sans-serif; /* Set font to Arial */
    font-size: 18px; /* Set font size to 12px */
}

.cost-table th, .cost-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cost-table tr:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #f1f1f1;
}

.cost-table th {
    background-color: #f4f4f4;
}
