.btn-moove {
    background: linear-gradient(to bottom,
            #FFFFFF,
            #F8FAFC,
            #2265ab 100%);
    color: #1E293B;
    border: none;
}

.btn-moove:hover {
    box-shadow: 0 0 10px #2265ab;
    background: linear-gradient(to bottom,
            #2265ab,
            #98fb00,
            #2265ab 100%);
    color: #fff;
}

#logout_btn {
    box-shadow: 0 0 10px #e8cc80;
    background: linear-gradient(to bottom,
            #fff,
            #fff,
            #2265ab 100%);
    transition: all 0.5s ease;
    margin-left: 10px;
}

#logout_btn:hover {
    box-shadow: 0 0 10px #ff0000, 0 0 5px #ff0000 inset;
    background: linear-gradient(to bottom,
            #fff,
            #fff,
            #ff0000 100%);
    color: #fff;
    border: #ff0000 1px solid;
}

.dashboard-container .profile-page {
    width: 80%;
}

.space {
    margin-bottom: 20px;
}

h3 i {
    font-size: 24px;
}


.spacetop {
    margin-top: 20px;
}

.dashboard-box h3 {
    font-size: 28px;
}

/* table */

thead tr {
    background-color: #2265ab;
}

table thead tr th {
    color: #fff;
    font-size: 24px;
    text-align: center
}

thead tr th h4 {
    color: #fff;
}

tbody tr:hover {
    background: linear-gradient(135deg,
            #fff,
            #42a5f5,
            #efcb68);
    box-shadow: 0 0 50px #1E293B, 0 0 20px #42a5f5 inset;

    color: #fff;
}

table tbody tr:nth-of-type(odd) {
    background-color: #f1f1f1;
}

ul {
    list-style-type: none;
}

table {
    /* border: 1px solid #1E293B; */
    /* border-collapse: separate;
    border-spacing: 0 15px; */
}