#top-link-block.affix-top {
    position: absolute; /* allows it to "slide" up into view */
    bottom: -82px; /* negative of the offset - height of link element */
    left: 10px; /* padding from the left side of the window */
}
#top-link-block.affix {
    position: fixed; /* keeps it on the bottom once in view */
    bottom: 18px; /* height of link element */
    left: 10px; /* padding from the left side of the window */
   	z-index: 999;
}

#login-page 
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    width: 100%;
}

#login-page .login-box 
{
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
}

#login-page input 
{
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

#login-page button 
{
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#login-page button:hover 
{
    background-color: #0056b3;
}

.navbar-user-center
{
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    line-height: 50px;
    color: #9fe7b1 !important;
    font-weight: bold;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 0;
}

.user-page-wrapper .panel {
    width: 100%;
    margin-bottom: 20px;
}

.user-page-wrapper .custom-user-table {
    width: 100%;
}

.user-page-wrapper .custom-user-table thead {
    background-color: #337ab7;
    color: #ffffff;
}

.user-page-wrapper .custom-user-table th,
.user-page-wrapper .custom-user-table td {
    padding: 20px;
    vertical-align: middle;
}

.user-page-wrapper .text-action {
    text-align: right;
}

.user-page-wrapper table.custom-user-table tbody tr:nth-of-type(odd)
{
    background-color: #F8F9FA;
}

.user-page-wrapper table.custom-user-table tbody tr:nth-of-type(even)
{
    background-color: #EDF2F7;
}

.user-page-wrapper table.custom-user-table tbody tr:hover
{
    background-color: #DEE2E6;
}