/* Mobile Card Table Styles */
@media (max-width: 768px) {
    .mobile-card-table {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-card {
        background-color: white;
        border: 1px solid #e5e7eb;
        border-radius: 0.75rem;
        padding: 1rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

    .mobile-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .mobile-card-title {
        font-weight: 700;
        font-size: 1rem;
        color: #111827;
    }

    .mobile-card-subtitle {
        font-size: 0.75rem;
        color: #6b7280;
        background-color: #f3f4f6;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
    }

    .mobile-card-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    .mobile-stat-box {
        background-color: #f9fafb;
        border-radius: 0.5rem;
        padding: 0.5rem;
        text-align: center;
        border: 1px solid #e5e7eb;
    }

    .mobile-stat-value {
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 1.25;
    }

    .mobile-stat-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        font-weight: 500;
        margin-top: 0.25rem;
    }

    /* Color variants for stat boxes */
    .mobile-stat-box.green {
        background-color: #f0fdf4;
        border-color: #dcfce7;
    }

    .mobile-stat-box.green .mobile-stat-value {
        color: #16a34a;
    }

    .mobile-stat-box.green .mobile-stat-label {
        color: #15803d;
    }

    .mobile-stat-box.indigo {
        background-color: #eef2ff;
        border-color: #e0e7ff;
    }

    .mobile-stat-box.indigo .mobile-stat-value {
        color: #4f46e5;
    }

    .mobile-stat-box.indigo .mobile-stat-label {
        color: #4338ca;
    }

    .mobile-stat-box.blue {
        background-color: #eff6ff;
        border-color: #dbeafe;
    }

    .mobile-stat-box.blue .mobile-stat-value {
        color: #2563eb;
    }

    .mobile-stat-box.blue .mobile-stat-label {
        color: #1d4ed8;
    }

    .mobile-stat-box.red {
        background-color: #fef2f2;
        border-color: #fee2e2;
    }

    .mobile-stat-box.red .mobile-stat-value {
        color: #dc2626;
    }

    .mobile-stat-box.red .mobile-stat-label {
        color: #b91c1c;
    }
}