/**
 *
 * Apply Here your Custom CSS
 *
*/

body {
	
}

.sel_table tbody > tr:hover *{
	text-decoration: none;
	color: #818da2;
}

.server-status-flash {
    position: fixed;
    left: 20px;
    bottom: 80px;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: calc(100% - 40px);
    word-wrap: break-word;
}

.server-status-flash.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

@media screen and (max-width: 768px) {
    .server-status-flash {
        left: 10px;
        right: 10px;
        bottom: 20px;
        padding: 12px 20px;
        text-align: center;
        font-size: 14px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .server-status-flash {
        left: 20px;
        bottom: 80px;
        padding: 14px 22px;
    }
}