.users-wheel{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    background-color: #f5f5f5;
    border-radius: 50%;
    border: 10px solid red;
}

.subwheel{
    position: relative;
    height: 45px;
    width: 150px;
    background-color: red;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 25px;
    bottom: 40px;
}

.dashboard-card{
    margin: 0 15px 30px 15px;
    max-width: 225px;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    aspect-ratio: 1/1;
    background-color: #eee;
    box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.dashboard-card-link{
    text-decoration: none;
    color: black;
}

.dashboard-card-link:hover{
    color: red;
}