﻿.dashboard-gird-item {
    padding: 8px !important;
}

.dashboard-card {
    position: relative;
    width: 100%;
    padding: 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #f5deb3;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .dashboard-card h3 {
        color: #f5deb3;
        font-size: clamp(2rem, 4vw, 3rem);
        text-shadow: 0 0 10px rgba(255, 223, 88, 0.8);
    }

    .dashboard-card p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        color: rgba(255, 255, 255, 0.8);
    }

    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .dashboard-card .mud-skeleton {
        transform: none;
    }
