.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    border-top: none !important;
}

a:focus, a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.form-control {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	color: #666;
}
.form-control:focus {
	border: 1px solid #ccc;
}

/* http://stackoverflow.com/questions/19562903/remove-padding-from-columns-in-bootstrap-3 */
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

/* http://stackoverflow.com/questions/20547819/vertical-align-with-bootstrap-3 */
.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.thumbnail {
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #5d8ec9;
}

.btn-primary {
    color: #5d8ec9;
    background-color: #daebff;
	border-color: #5d8ec9;
	-moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    color: #fff !important;
    background-color: #5d8ec9 !important;
	border-color: #5d8ec9 !important;
}

.btn-yellow {
    color: #64491f;
    background-color: #ffecb2;
	border-color: #d9c68d;
	-moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
}
.btn-yellow:active, .btn-yellow:focus, .btn-yellow:hover {
    color: #64491f !important;
    background-color: #fff4d3 !important;
	border-color: #d9c68d !important;
}

.btn-danger, .btn-danger:active, .btn-danger:focus, .btn-danger:hover {
    color: #ffffff !important;
}
/* =========================================
   RUINMU SERVER STATUS CARD
========================================= */

.header-info-container {
	width: 100%;
	margin: 18px 0 22px 0 !important;
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
	box-shadow: none !important;
	display: flex;
	justify-content: center;
}

.ruinmu-status-card {
	width: 100%;
	max-width: 460px;
	padding: 20px 22px;
	border-radius: 14px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(8,8,8,0.95) 0%, rgba(20,10,6,0.96) 100%);
	border: 1px solid rgba(255, 211, 122, 0.80);
	box-shadow:
		0 0 22px rgba(0,0,0,0.55),
		0 0 16px rgba(255,170,70,0.08),
		inset 0 1px 0 rgba(255,255,255,0.05);
}

.ruinmu-status-card:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, #2d1d08, #ffd27a, #2d1d08);
	box-shadow: 0 0 10px rgba(255,200,90,0.35);
}

.ruinmu-status-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.ruinmu-status-line:last-child {
	margin-bottom: 0;
}

.ruinmu-status-left {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #f3efe3;
	font-size: 15px;
	line-height: 1.2;
	text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}

.ruinmu-status-left i {
	width: 16px;
	text-align: center;
	font-size: 14px;
	color: #ffe3a0;
}

.ruinmu-status-right {
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	text-align: right;
	text-shadow: 0 0 8px rgba(255,255,255,0.06);
}

.ruinmu-online-value {
	font-size: 18px;
	color: #00ff47;
	text-shadow:
		0 0 6px rgba(0,255,70,0.35),
		0 0 12px rgba(0,255,70,0.14);
}

.ruinmu-status-progress {
	width: 100%;
	height: 16px;
	margin: 2px 0 14px 0;
	border-radius: 30px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(0,0,0,0.90), rgba(22,22,22,0.95));
	border: 1px solid rgba(255,220,150,0.18);
	box-shadow: inset 0 2px 7px rgba(0,0,0,0.70);
	position: relative;
	z-index: 2;
}

.ruinmu-status-progress-bar {
	height: 100%;
	min-width: 6px;
	border-radius: 30px;
	background: linear-gradient(90deg, #00ff47 0%, #76ff75 45%, #c5ff9d 100%);
	box-shadow:
		0 0 10px rgba(70,255,110,0.24),
		inset 0 1px 0 rgba(255,255,255,0.18);
}

.ruinmu-status-divider {
	height: 1px;
	margin: 8px 0 14px 0;
	background: linear-gradient(90deg, transparent, rgba(255,213,127,0.30), transparent);
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.ruinmu-status-card {
		max-width: 100%;
		padding: 18px 16px;
	}

	.ruinmu-status-left,
	.ruinmu-status-right {
		font-size: 14px;
	}

	.ruinmu-online-value {
		font-size: 16px;
	}

	.ruinmu-status-progress {
		height: 14px;
	}
}