/*!
    
 =========================================================
 * WebEngine CMS
 * https://webenginecms.org/
 =========================================================
 
 * Author Lautaro Angelico (https://lautaroangelico.com/)
 * Copyright (c) 2013-2026 Lautaro Angelico, All Rights Reserved
 
 * Licensed under the MIT license
 * https://opensource.org/licenses/MIT
 
 =========================================================
 
*/
.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;
	outline: none !important;
}

.form-control {
	background: linear-gradient(135deg, #080810 0%, #0a0a14 100%);
	border: 1px solid rgba(120, 20, 20, 0.3);
	color: #c8c0c0;
	transition: border .2s ease, box-shadow .2s ease;
}
.form-control:focus {
	background: linear-gradient(135deg, #090912 0%, #0c0c18 100%);
	border: 1px solid rgba(204, 34, 0, 0.5);
	box-shadow: 0 0 10px rgba(204, 34, 0, 0.12), inset 0 1px 3px rgba(0,0,0,0.4);
	color: #e0d8d8;
	outline: none;
}

/* 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: var(--webenginecolor27);
    border: 1px solid var(--webenginecolor16);
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: var(--webenginecolor1);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #cc2200 0%, #991a00 60%, #770000 100%);
	border-color: rgba(204, 34, 0, 0.45);
    transition: all .2s ease;
	border-radius: 3px;
	box-shadow: 0 2px 10px rgba(204, 34, 0, 0.3), inset 0 1px 0 rgba(255,100,60,0.2);
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff3300 0%, #cc1a00 60%, #991000 100%) !important;
	border-color: rgba(255, 51, 0, 0.55) !important;
	box-shadow: 0 4px 18px rgba(204, 34, 0, 0.45), inset 0 1px 0 rgba(255,140,80,0.25) !important;
	transform: translateY(-1px);
}

.form-horizontal .control-label {
	text-align: left !important;
}

/* ============================================================
   DARK THEME — Bootstrap Table Overrides
   ============================================================ */

.table {
	color: #e8e2e2;
}

.table > thead > tr > th {
	background: linear-gradient(90deg, #2a0505 0%, #1e0202 50%, #140101 100%);
	color: #e0d0d0;
	border-bottom: 2px solid #cc2200 !important;
	border-color: rgba(120, 20, 20, 0.35);
	font-weight: bold;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td {
	border-color: rgba(120, 20, 20, 0.2) !important;
	color: #e8e2e2;
}

.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: rgba(204, 34, 0, 0.05);
}

.table-striped > tbody > tr:nth-of-type(even) {
	background-color: rgba(0, 0, 0, 0.2);
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th {
	border-color: rgba(120, 20, 20, 0.25) !important;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
	background-color: rgba(204, 34, 0, 0.1) !important;
	color: #ffffff;
}

/* ============================================================
   DARK THEME — Content Headings (h2, h3 in modules)
   ============================================================ */

#content h2 {
	font-family: 'Cinzel', 'PT Sans', serif;
	color: #cc2200;
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid rgba(204, 34, 0, 0.3);
	padding-bottom: 8px;
	margin-top: 10px;
	margin-bottom: 15px;
	text-shadow: 0 0 20px rgba(204, 34, 0, 0.25);
	letter-spacing: 0.5px;
}