/* Styles pour le plugin Subscription */

.subscription-status,
.subscription-plans,
.subscription-addons,
.available-addons,
.payment-methods {
    margin-bottom: 2rem;
}

.plan-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #1f2937;
}

.plan-price small {
    font-size: 1rem;
    font-weight: normal;
    color: #6b7280;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #e5e7eb;
    color: #374151;
}

.badge.success {
    background: #d1fae5;
    color: #065f46;
}

.badge.alert {
    background: #fee2e2;
    color: #991b1b;
}

.badge.warning {
    background: #fef3c7;
    color: #92400e;
}

