/* Add here all your CSS customizations */
.dashboard-box-items {
    padding: 6px;
    text-align: center;
    margin-bottom: 30px;
    width: 245px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*flex-direction: column;*/
    margin: 10px auto 30px;
    border-radius: 10px;
    border-bottom: 2px solid #0097cc;
    box-shadow: -1px -4px 8px 5px rgb(0 151 204 / 18%);
    border-radius: 4px;
    transition: all ease-in 0.8s;
    gap: 15px;
}

.dashboard-box-items:hover {
    box-shadow: 0px 1px 9px 0px rgb(0 151 204 / 18%);
    transform: translateY(-10px);
}

.dashboard-box-items label {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.dashboard-box-items p.userno_txt {
    color: #0097cc;
    font-size: 25px;
    font-weight: 700;
}
