﻿.dashboard-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.dashboard-tile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    background-color: #ffffff;
    border-radius: 12px;
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.2s ease-in-out;
}

    .dashboard-tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }