:root {
    --primary-color: #1976d2;
    /* --primary-color: #13366e; */
}
.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
}
.pricing-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.best-value {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 70px 20px 20px 20px;
    position: relative;
}
.best-value .badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    color: var(--primary-color);
}
.table-responsive {
    background-color: #fff;
}
.table thead th {
    vertical-align: middle;
}
table th,
table td {
    vertical-align: middle;
    text-align: center;
}
.table thead {
    background-color: var(--primary-color);
    color: #fff;
}
.best-value h3,
.best-value h5,
.best-value p {
    color: #fff;
    margin-bottom: 0;
}
.table {
    border-collapse: separate;
    border-spacing: 0 12px; /* space between rows */
}

.table tbody tr {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* subtle shadow */
}
.table tbody tr:nth-child(odd) {
    background-color: rgba(25, 118, 210, 0.4);
    /* opacity: 0.5; */
}

.table tbody tr:nth-child(even) {
    background-color: #fff; /* keep even rows white */
}

.table tbody td:first-child {
    border-top-left-radius: 33px;
    border-bottom-left-radius: 33px;
}

.table tbody td:last-child {
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
}
.table thead,
.table tr {
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
}
/* remove default borders */
.table td,
.table th {
    border: none !important;
}
.coming-soon-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.coming-soon svg {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}
