.card {
    border: 1px solid #e5e5e5;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.card-header {
    background: #f7f7f7;
    padding: .75rem 1rem;
    font-weight: 600;
}

.card-body {
    padding: 1rem;
}

.page {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.top-row {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}
.btn-gradient {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

    .btn-gradient:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }
.text-gradient {
    background: linear-gradient(90deg, #6f42c1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout for Stripe pricing tables */
.pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

stripe-pricing-table {
    flex: 1 1 350px;
    max-width: 420px;
    min-width: 280px;
}

/* Make it mobile-friendly */
@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }
}
/*  Upgrade Button Styling */
.btn-upgrade {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.4);
    transition: all 0.25s ease-in-out;
    animation: pulse-glow 2.2s infinite;
}

    /* Hover effect */
    .btn-upgrade:hover {
        transform: scale(1.07);
        box-shadow: 0 0 18px rgba(139, 92, 246, 0.7);
    }

/*  Glow pulse animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.6), 0 0 15px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.9), 0 0 25px rgba(139, 92, 246, 0.5);
    }

    100% {
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.6), 0 0 15px rgba(139, 92, 246, 0.3);
    }
}
.word-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

    .word-cloud span:hover {
        color: #6f42c1;
        transform: scale(1.2);
        transition: all 0.2s ease;
    }
