/* Custom Merchant Panel Theme Styles */

    /* Style for the stats overview widget cards */
    .fi-wi-stats-overview .fi-wi-stats-overview-stat {
        @apply bg-gradient-to-br from-primary-50 to-white dark:from-gray-800 dark:to-gray-900 shadow-md rounded-lg p-4;
        /* Example gradient and styling - adjust as needed based on mockup */
    }

    /* Ensure widgets in the footer stack vertically on smaller screens */
    .fi-pg-footer {
        @apply grid grid-cols-1 gap-6; /* Default to 1 column */
    }

    @screen lg {
        /* On large screens, use the columns defined in MerchantDashboard.php */
        /* This might need adjustment depending on how Filament handles footer widget columns */
         .fi-pg-footer {
             /* Let Filament's grid handle it, or define specific columns if needed */
             /* Example: @apply grid grid-cols-3 gap-6; */
         }
    }

    /* Add other custom styles below */