.table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: rgb(254, 254, 254);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 80vw;
    width: 600px;
    margin-left: 30px;
}

.table {
    border-collapse: collapse;
    margin: 0 0 20px 0;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    max-width: 80vw;
}

.table th:first-child,
.table td:first-child {
    border-left: none;
}

.table th:last-child,
.table td:last-child {
    border-right: none;
}

.table tr:first-child th,
.table tr:first-child td {
    border-top: none;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:first-child th:first-child {
    border-top-left-radius: 13px;
}

.table tr:first-child th:last-child {
    border-top-right-radius: 13px;
}

.table tr:last-child td:first-child {
    border-bottom-left-radius: 13px;
}

.table tr:last-child td:last-child {
    border-bottom-right-radius: 13px;
}

.table th,
.table td {
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    font-size: 1.2rem;

}


th.type {
    padding: 12px 0;
    width: 350px;
    font-weight: bold;
    max-width: 40vw;
}

.price {
    padding: 8px 20px;
    text-align: center;
    max-width: 30vw;
}

.price-tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.price-tag:hover {
    transform: scale(1.05);
}

.table-header{
    margin-top: 0;
}
