@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------------------
   PLAN GRID STYLES
---------------------------------------------------------------- */
.ms-frontend-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a2e;
}

.ms-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.ms-section-eyebrow {
    color: #1D308C;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ms-section-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.1;
    color: #1D308C;
}

.ms-section-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.ms-fe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ms-fe-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.ms-fe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 48, 140, 0.08);
    border-color: #1D308C;
}

.ms-fe-card.ms-featured {
    border: 2px solid #1D308C;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(29, 48, 140, 0.1);
    z-index: 2;
}

.ms-fe-featured-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1D308C;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ms-fe-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ms-fe-badge--recurring {
    background: #eff6ff;
    color: #1D308C;
}

.ms-fe-badge--one_time {
    background: #fef2f2;
    color: #991b1b;
}

.ms-fe-badge--free {
    background: #f0fdf4;
    color: #166534;
}

.ms-fe-plan-name {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #1D308C;
}

.ms-fe-price-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.ms-fe-price-amount {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 4px;
}

.ms-fe-price-duration {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ms-fe-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 0 0 24px;
}

.ms-fe-cta {
    margin-top: auto;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: #1D308C;
    color: #fff !important;
}

.ms-fe-cta:hover {
    background: #16246b;
    transform: scale(1.02);
}

.ms-fe-cta--loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ----------------------------------------------------------------
   AUTH FORM STYLES
---------------------------------------------------------------- */
.ms-auth-wrap {
    padding: 80px 20px;
    background: #f8f8fb;
    min-height: 400px;
    display: flex;
    justify-content: center;
}

.ms-auth-card {
    background: #fff;
    width: 100%;
    max-width: 440px;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.ms-auth-header-icon {
    width: 64px;
    height: 64px;
    background: #f0f4ff;
    color: #1D308C;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ms-auth-header-icon svg {
    width: 32px;
    height: 32px;
}

.ms-auth-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    text-align: center;
}

.ms-auth-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
}

.ms-auth-field {
    margin-bottom: 20px;
}

.ms-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ms-input-wrap {
    position: relative;
}

.ms-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #aaa;
}

.ms-auth-form input {
    width: 100% !important;
    padding: 12px 16px 12px 42px !important;
    border: 1.5px solid #e0e0ee !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    background: #fff !important;
}

.ms-auth-btn {
    width: 100%;
    padding: 14px;
    background: #1D308C !important;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.ms-auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.ms-auth-link {
    color: #1D308C;
    text-decoration: none;
    font-weight: 600;
}

/* ----------------------------------------------------------------
   USER DASHBOARD STYLES
---------------------------------------------------------------- */
.ms-dash-wrap {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
}

.ms-dash-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .ms-dash-grid {
        grid-template-columns: 1fr;
    }
}

.ms-dash-sidebar {
    background: #fff;
    border: 1px solid #e0e0ee;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ms-dash-user-card {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f5;
}

.ms-dash-avatar {
    width: 80px;
    height: 80px;
    background: #1D308C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.ms-dash-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ms-dash-nav-item svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    opacity: 0.7;
}

.ms-dash-nav-item:hover {
    background: #f0f4ff;
    color: #1D308C;
}

.ms-dash-nav-item.active {
    background: #1D308C;
    color: #fff;
    box-shadow: 0 8px 16px rgba(29, 48, 140, 0.2);
}

.ms-dash-main {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.ms-tab-header {
    margin-bottom: 35px;
}

.ms-tab-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ms-form-section {
    margin-bottom: 48px;
    padding: 32px;
    background: #fcfcfd;
    border-radius: 20px;
    border: 1px solid #f0f0f5;
}

.ms-form-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1D308C;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ms-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .ms-form-row {
        grid-template-columns: 1fr;
    }
	
	.ms-fe-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
}

.ms-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.ms-form-group input,
.ms-form-group textarea {
    width: 100% !important;
    padding: 12px 18px !important;
    border: 1.5px solid #e0e0ee !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    background: #fff !important;
    transition: all 0.2s !important;
}

.ms-profile-submit {
    background: #1D308C !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    box-shadow: 0 10px 20px rgba(29, 48, 140, 0.15) !important;
}

.ms-profile-submit:hover {
    background: #16246b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(29, 48, 140, 0.2) !important;
}

.ms-active-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ms-active-plan-card {
    border: 1px solid #e0e0ee;
    border-radius: 12px;
    padding: 20px;
    background: #fcfcfd;
}

.ms-plan-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.ms-plan-status.active {
    background: #dcfce7;
    color: #166534;
}

.ms-dash-portal-btn {
    background: #f4f4f8;
    color: #1D308C;
    border: 1px solid #e0e0ee;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.ms-plan-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1D308C;
}

.ms-active-plan-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.ms-plan-status.inactive {
    background: #f1f5f9;
    color: #64748b;
}

.ms-plan-meta {
    font-size: 12px;
    color: #888;
    margin: 8px 0 0 0;
}

.ms-no-plans {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    background: #f9f9fc;
    border-radius: 12px;
    border: 1px dashed #d0d0e8;
}

.ms-no-plans a {
    color: #1D308C;
    font-weight: 600;
}

.ms-profile-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.ms-status-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.ms-status-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ----------------------------------------------------------------
   GOOGLE SIGN-IN BUTTON & AUTH DIVIDER
---------------------------------------------------------------- */
.ms-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ms-auth-divider::before,
.ms-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.ms-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 13px 20px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin-bottom: 4px;
    user-select: none;
}

.ms-google-btn:hover {
    border-color: #1D308C;
    background: #f8faff;
    box-shadow: 0 2px 8px rgba(29, 48, 140, 0.08);
    transform: translateY(-1px);
}

.ms-google-btn:active {
    transform: translateY(0);
}

.ms-google-btn--loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

.ms-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   GROUPED MEMBERSHIP PLAN DESIGN
   Frontend presentation for [memberstack_plans] only.
---------------------------------------------------------------- */
.ms-frontend-wrap .ms-fe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.ms-plan-category {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe5f3;
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(29, 48, 140, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ms-plan-category:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 48, 140, 0.35);
    box-shadow: 0 20px 48px rgba(29, 48, 140, 0.12);
}

.ms-plan-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 22px 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #1D308C 0%, #2947b8 100%);
}

.ms-plan-category-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.ms-plan-category-icon svg {
    width: 21px;
    height: 21px;
}

.ms-plan-category-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ms-plan-category-body {
    padding: 8px 24px;
}

.ms-plan-row {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f7;
}

.ms-plan-row:last-child {
    border-bottom: 0;
}

.ms-plan-row-main {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ms-plan-row-label {
    color: #26324a;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.ms-plan-row-price {
    flex: 0 0 auto;
    color: #1D308C;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ms-plan-row-action {
    flex: 0 0 auto;
    min-width: 76px;
    padding: 10px 15px;
    border: 1px solid #1D308C;
    border-radius: 10px;
    background: #ffffff;
    color: #1D308C;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ms-plan-row-action:hover {
    transform: translateY(-1px);
    background: #1D308C;
    color: #ffffff;
}

.ms-plan-row-action.ms-fe-cta--loading {
    min-width: 118px;
    font-size: 12px;
}

.ms-plan-row-action--disabled {
    border-color: #d7dce8;
    color: #98a1b3;
    background: #f7f8fb;
    cursor: not-allowed;
}

@media (max-width: 820px) {
    .ms-frontend-wrap .ms-fe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .ms-frontend-wrap {
        padding: 42px 14px;
    }

    .ms-section-header {
        margin-bottom: 32px;
    }

    .ms-section-title {
        font-size: 32px;
    }

    .ms-section-subtitle {
        font-size: 16px;
    }

    .ms-plan-category-heading {
        min-height: 80px;
        padding: 18px;
    }

    .ms-plan-category-heading h3 {
        font-size: 18px;
    }

    .ms-plan-category-body {
        padding: 6px 18px;
    }

    .ms-plan-row {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 16px 0;
    }

    .ms-plan-row-main {
        width: 100%;
    }

    .ms-plan-row-action {
        width: 100%;
        padding: 12px 15px;
    }
}

/* ================================================================
   PRICING SHORTCODE UI REFINEMENT
   Visual-only overrides for [memberstack_plans]
================================================================ */
.ms-frontend-wrap {
    max-width: 1180px;
    padding: 72px 24px;
}

.ms-frontend-wrap .ms-section-header {
    max-width: 760px;
    margin-bottom: 44px;
}

.ms-frontend-wrap .ms-section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 13px;
    margin-bottom: 15px;
    border: 1px solid rgba(29, 48, 140, 0.14);
    border-radius: 999px;
    background: rgba(29, 48, 140, 0.06);
    font-size: 12px;
    letter-spacing: 0.11em;
}

.ms-frontend-wrap .ms-section-title {
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -0.04em;
}

.ms-frontend-wrap .ms-section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #5f6c85;
    font-size: 17px;
}

.ms-frontend-wrap .ms-fe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.ms-frontend-wrap .ms-plan-category {
    border: 1px solid #dfe5f1;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(22, 36, 107, 0.08);
}

.ms-frontend-wrap .ms-plan-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(22, 36, 107, 0.13);
}

.ms-frontend-wrap .ms-plan-category-heading {
    min-height: 96px;
    padding: 22px 25px;
    background: linear-gradient(135deg, #182a7e 0%, #2949b9 100%);
}

.ms-frontend-wrap .ms-plan-category-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ms-frontend-wrap .ms-plan-category-heading h3 {
    font-size: 20px;
    line-height: 1.35;
}

.ms-frontend-wrap .ms-plan-category-body {
    padding: 10px 22px 14px;
}

.ms-frontend-wrap .ms-plan-row {
    min-height: 82px;
    gap: 18px;
    padding: 15px 2px;
}

.ms-frontend-wrap .ms-plan-row-main {
    gap: 16px;
}

.ms-frontend-wrap .ms-plan-row-label {
    color: #27344d;
    font-size: 15px;
    font-weight: 700;
}

.ms-frontend-wrap .ms-plan-row-price {
    min-width: 70px;
    text-align: right;
    color: #172976;
    font-size: 20px;
    font-weight: 800;
}

.ms-frontend-wrap .ms-plan-row-action {
    position: relative;
    min-width: 108px;
    min-height: 44px;
    padding: 12px 34px 12px 17px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #1D308C 0%, #3155d0 100%);
    box-shadow: 0 8px 18px rgba(29, 48, 140, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
}

.ms-frontend-wrap .ms-plan-row-action::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-52%);
    font-size: 17px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.ms-frontend-wrap .ms-plan-row-action:hover,
.ms-frontend-wrap .ms-plan-row-action:focus-visible {
    background: linear-gradient(135deg, #14266f 0%, #2546b5 100%);
    box-shadow: 0 11px 24px rgba(29, 48, 140, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.ms-frontend-wrap .ms-plan-row-action:hover::after,
.ms-frontend-wrap .ms-plan-row-action:focus-visible::after {
    transform: translate(3px, -52%);
}

.ms-frontend-wrap .ms-plan-row-action:focus-visible {
    outline: 3px solid rgba(49, 85, 208, 0.25);
    outline-offset: 3px;
}

.ms-frontend-wrap .ms-plan-row-action.ms-fe-cta--loading {
    min-width: 142px;
    padding-right: 17px;
}

.ms-frontend-wrap .ms-plan-row-action.ms-fe-cta--loading::after,
.ms-frontend-wrap .ms-plan-row-action--disabled::after {
    display: none;
}

.ms-frontend-wrap .ms-plan-row-action--disabled {
    border: 1px solid #d7dce8;
    background: #f3f5f9;
    box-shadow: none;
    color: #8a94a8;
}

.ms-frontend-wrap .ms-plan-category--student .ms-plan-row-price {
    color: #157347;
}

@media (max-width: 900px) {
    .ms-frontend-wrap .ms-fe-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .ms-frontend-wrap {
        padding: 48px 14px;
    }

    .ms-frontend-wrap .ms-section-header {
        margin-bottom: 30px;
    }

    .ms-frontend-wrap .ms-section-title {
        margin-bottom: 12px;
        font-size: 32px;
        line-height: 1.12;
    }

    .ms-frontend-wrap .ms-section-subtitle {
        font-size: 15px;
        line-height: 1.55;
    }

    .ms-frontend-wrap .ms-fe-grid {
        gap: 18px;
    }

    .ms-frontend-wrap .ms-plan-category {
        border-radius: 18px;
    }

    .ms-frontend-wrap .ms-plan-category:hover {
        transform: none;
    }

    .ms-frontend-wrap .ms-plan-category-heading {
        min-height: 82px;
        padding: 17px 18px;
    }

    .ms-frontend-wrap .ms-plan-category-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .ms-frontend-wrap .ms-plan-category-heading h3 {
        font-size: 18px;
    }

    .ms-frontend-wrap .ms-plan-category-body {
        padding: 5px 16px 13px;
    }

    .ms-frontend-wrap .ms-plan-row {
        min-height: 0;
        gap: 12px;
        padding: 16px 0;
    }

    .ms-frontend-wrap .ms-plan-row-main {
        align-items: center;
    }

    .ms-frontend-wrap .ms-plan-row-label {
        font-size: 14px;
    }

    .ms-frontend-wrap .ms-plan-row-price {
        min-width: auto;
        font-size: 19px;
    }

    .ms-frontend-wrap .ms-plan-row-action {
        width: 100%;
        min-height: 48px;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .ms-frontend-wrap .ms-plan-row-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .ms-frontend-wrap .ms-plan-row-price {
        text-align: left;
    }
}
