.dashboard-tabs-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

@media (max-width: 1024px) {
    .dashboard-tabs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard-tabs-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-tab {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    cursor: pointer;
}

.dashboard-tab-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),
    0px 2px 2px 0px rgba(0,0,0,0.14),
    0px 1px 5px 0px rgba(0,0,0,0.12);
}

.dashboard-tab:hover .dashboard-tab-inner {
    box-shadow: 0px 6px 6px -2px rgba(0,0,0,0.25),
    0px 4px 6px 0px rgba(0,0,0,0.2),
    0px 2px 10px 0px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.dashboard-tab-icon {
    max-width: 65%;
    height: auto;
}

@media (max-width: 600px) {
    .dashboard-tabs-grid {
        grid-template-columns: 1fr;
    }
}