.wnct-table-container {
    width: 100%;
    overflow-x: auto;
    background: #1e293b;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.wnct-pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    table-layout: fixed;
    min-width: 800px;
}

.wnct-pricing-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.wnct-pricing-table th {
    text-align: left;
    padding: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wnct-pricing-table th:first-child {
    border-top-left-radius: 40px;
}

.wnct-pricing-table th:last-child {
    border-top-right-radius: 40px;
}

.wnct-pricing-table td {
    padding: 28px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.wnct-pricing-table tr:last-child td {
    border-bottom: none;
}

.wnct-pricing-table tbody tr {
    transition: background 0.3s ease;
}

.wnct-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.wnct-region {
    font-weight: 600;
    font-size: 1.1rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.wnct-pricing-table tr:hover .wnct-region {
    color: #fff;
}

.wnct-price {
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: 800;
}

.wnct-logic {
    font-style: italic;
    font-size: 0.95rem;
    color: #94a3b8;
}

@media (max-width: 768px) {

    .wnct-pricing-table th,
    .wnct-pricing-table td {
        padding: 20px;
    }
}