.authyo-pricing-wrapper {
    max-width: 100%;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.authyo-top-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.authyo-country-select label {
    margin-right: 10px;
}

.authyo-plan-toggle button {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
}

.authyo-plan-toggle button.active {
    background: #007cba;
    color: white;
}

.authyo-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.authyo-pricing-table th,
.authyo-pricing-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

@media (max-width: 768px) {
    .authyo-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .authyo-pricing-table table,
    .authyo-pricing-table thead,
    .authyo-pricing-table tbody,
    .authyo-pricing-table th,
    .authyo-pricing-table td,
    .authyo-pricing-table tr {
        display: block;
    }

    .authyo-pricing-table thead {
        display: none;
    }

    .authyo-pricing-table tr {
        margin-bottom: 15px;
        border-bottom: 2px solid #ccc;
    }

    .authyo-pricing-table td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .authyo-pricing-table td::before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }

    .authyo-pricing-table tr td:nth-child(1)::before { content: "Platform"; }
    .authyo-pricing-table tr td:nth-child(2)::before { content: "Free"; }
    .authyo-pricing-table tr td:nth-child(3)::before { content: "Starter"; }
    .authyo-pricing-table tr td:nth-child(4)::before { content: "Pro"; }
    .authyo-pricing-table tr td:nth-child(5)::before { content: "Enterprise"; }
}
