/* card.css – reusable card patterns */

.card-list {
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    background: #ffffff;
}

/* For table-based card lists (like Projects) */
.card-list table {
    width: 100%;
    border-collapse: collapse;
}

.card-list .table-row {
    padding: 0;
}

/* Card block */

.card {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
}

.card:last-child {
    border-bottom: none;
}

.card-header {
    margin-bottom: 8px;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 0.25rem;
}

.card-meta {
    display: grid;
    grid-template-columns: 20% 20% 20% minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    box-sizing: border-box;
    font-size: 0.85rem;
}

.card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 720px) {
    .card-meta {
        grid-template-columns: 1fr 1fr;
        row-gap: 6px;
    }

    .card-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* ----------------------------------------------------
   PRICING CARD — isolated style for pricing page only
   Does NOT affect normal .card components
   ---------------------------------------------------- */

.pricing-card {
    border: 3px solid #22c55e;     /* Green border */
    border-radius: 18px;           /* Rounded edges */
    padding: 1.5rem;               /* More breathing room */
    background: #ffffff;
    box-shadow: none !important;   /* Remove any shadows */
    transform: none !important;    /* Remove scale/hover lift */
    transition: none !important;   /* Disable hover animations */
}

/* Remove hover effects */
.pricing-card:hover {
    box-shadow: none !important;
    transform: none !important;
}

/* Make sure shadow-strong doesn't override pricing cards */
.pricing-card.shadow-strong {
    box-shadow: none !important;
}

/* Large, bold plan title */
.pricing-card .card-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

/* Large pricing text */
.pricing-card .card-meta strong {
    font-size: 2.2rem;   /* matches title */
    font-weight: 700;
}

/* Cleaner muted text spacing */
.pricing-card .text-small.text-muted {
    margin-bottom: 0.25rem;
}

/* Badge (Entry / Popular / Max) tweaks */
.pricing-card .status-pill {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 999px;
}
