  .dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
            max-width: 400px;
            justify-items: center;
                justify-self: center;
        }
        .icon-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 120px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
            cursor: pointer;
        }
        .icon-box:hover {
            transform: scale(1.1);
        }
        .icon-box svg {
            width: 50px;
            height: 50px;
            fill: #333;
        }
        .icon-box span {
            margin-top: 5px;
            font-size: 14px;
            color: #333;
        }
        .dashboard img{
            width:100px;
            height:80px;
        }
        
        @media only screen and (max-width: 480px) {
            
            .dashboard{
                   justify-self: unset;
                           padding: 5px;
                
            }
        }
        