
.dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            width: 100%;
            max-width: 1200px;
            margin: 0px auto;
        }

        .card {
            padding: 30px;
            background-color: #fff;
            box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1),
                        0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15),
                        0 15px 15px -5px rgba(0, 0, 0, 0.08);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
        }

        .title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .title span {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #10b981, #3b82f6);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 18px;
        }

        .title-text {
            margin-left: 12px;
            color: #374151;
            font-size: 18px;
            font-weight: 600;
        }

        .data {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .data p {
            color: #1f2937;
            font-size: 2.5rem;
            font-weight: 800;
            text-align: left;
            margin: 10px 0 20px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .range {
            position: relative;
            background-color: #e5e7eb;
            width: 100%;
            height: 12px;
            border-radius: 10px;
            overflow: hidden;
        }

        .fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }

        .card-total .fill {
            background: linear-gradient(90deg, #10b981, #34d399);
            width: 76%;
        }

        .card-month .fill {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            width: 63%;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: #6b7280;
            font-size: 14px;
        }

        .progress-text {
            font-weight: 600;
            color: #374151;
        }

        .last-update {
            text-align: right;
            font-size: 12px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .dashboard {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .card {
                padding: 25px;
            }
            
            .data p {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .card {
                padding: 20px;
            }
            
            .title-text {
                font-size: 16px;
            }
            
            .data p {
                font-size: 2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 5px;
            }
            
            .last-update {
                text-align: left;
            }
        }