-/* ACRM LMS - Public Pricing Cards Styles */

.acrm-interactive-plans-wrapper {
    max-width: 1250px;
    margin: 30px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.acrm-plans-matrix-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
}

.acrm-plan-card-custom {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    width: 380px;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acrm-plan-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Dynamic Header touching Top, Left & Right Borders */
.acrm-plan-card-header {
    padding: 16px 20px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.acrm-plan-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #ffffff !important;
}

.acrm-card-content-body {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.acrm-plan-card-features {
    list-style: none !important;
    padding: 0 10px !important;
    margin: 15px 0 !important;
}

.acrm-plan-card-features li {
    font-size: 14px;
    color: #333333;
    padding: 6px 0;
}

.acrm-plan-card-features li::before {
    content: "• ";
    color: #333;
    font-weight: bold;
}

.acrm-plan-card-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 15px 0;
}

/* Dual Vertical Column Layout */
.acrm-screenshot-dual-col {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.acrm-col-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acrm-col-title {
    font-size: 12px;
    font-weight: 800;
    color: #2b4260;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* Duration Buttons (Purple Active) */
button.acrm-dur-btn {
    background: #ffffff;
    border: 1px solid #c7d2fe;
    color: #1e293b;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

button.acrm-dur-btn.active {
    background: #7c3aed !important;
    color: #ffffff !important;
    border-color: #7c3aed !important;
}

/* Horoscopes Buttons (Green Active) */
button.acrm-lim-btn {
    background: #ffffff;
    border: 1px solid #c7d2fe;
    color: #1e293b;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

button.acrm-lim-btn.active {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
}

/* Total Price Green Display */
.acrm-total-price-display {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #10b981;
    margin: 20px 0 15px;
}

/* Dynamic Buy Now Button Base */
.acrm-buy-now-btn {
    width: 100%;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.acrm-buy-now-btn:hover {
    opacity: 0.9;
}


/* Admin Dashboard Styling */
.acrm-admin-dashboard-wrapper {
    max-width: 1100px;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-family: Arial, Helvetica, sans-serif;
}

.acrm-dashboard-title {
    margin: 0 0 5px 0;
    color: #0f172a;
    font-size: 24px;
}

.acrm-dashboard-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Tabs Navigation Bar */
.acrm-tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

button.acrm-tab-btn {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

button.acrm-tab-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

button.acrm-tab-btn.active {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Fixed Height Viewport Display */
.acrm-tab-display-viewport {
    height: 450px;
    overflow-y: auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
}

.acrm-tab-pane {
    display: none;
}

.acrm-tab-pane.active {
    display: block;
}

.acrm-pane-inner-content {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-top: 15px;
}

/* Premium Smart Card Summary Grid */
.acrm-plans-summary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.acrm-summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acrm-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Smart & Premium Header Badge */
.acrm-card-badge {
    color: #ffffff;
    padding: 12px 18px; /* सही पैडिंग: ऊपर-नीचे 12px, दाएँ-बाएँ 18px */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-align: left; /* बाईं तरफ साफ़ अलाइनमेंट */
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15); /* स्मार्ट नीचे का शेड */
    background-image: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.1) 100%); /* प्रीमियम ग्रेडिएंट शाइन */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.acrm-summary-body {
    padding: 18px;
}

.acrm-summary-price {
    font-size: 15px;
    margin-bottom: 12px;
    color: #10b981;
    font-weight: 600;
}

.acrm-summary-body ul {
    padding-left: 5px;
    list-style: none !important;
    margin: 8px 0 18px;
    font-size: 13px;
    color: #334155;
}

.acrm-summary-body ul li {
    padding: 4px 0;
}

.acrm-edit-plan-btn {
    display: inline-block;
    text-align: center;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
}

.acrm-edit-plan-btn:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Force Mask Access Key via CSS */
.acrm-secure-key-container code {
    font-family: monospace !important;
    letter-spacing: 3px !important;
    background: #0f172a !important;
    color: #38bdf8 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    display: inline-block !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}

/* Hide original text using CSS font-size trick if needed */
.acrm-masked-text {
    font-size: 0 !important; /* असली टेक्स्ट को 0px कर देगा */
}

.acrm-masked-text::before {
    content: "••••••••••••••••" !important; /* उसकी जगह केवल डॉट्स दिखाएगा */
    font-size: 13px !important;
    letter-spacing: 2px !important;
    color: #38bdf8 !important;
}