.dimville-shortcuts {
    margin-top: 20px;
}
.shortcut-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.shortcut-item {
    background: #fff;
    border: 2px solid #f1f2f4;
    padding: 10px;
    text-align: center;
    width: 45%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 12px;
}
.shortcut-item a {
    text-decoration: none;
    color: #3e3e3e;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.shortcut-item:hover {
  border: 2px solid #ccc;
}
.shortcut-item a i, .shortcut-market a i {
    font-size: 40px; /* Bigger icon size */
    margin-bottom: 10px; /* Space between icon and title */
}
.shortcut-item a span {
    margin-top: 5px;
    font-size: 16px;
}
.shortcut-item a:hover {
    color: #000;
}