@font-face {
    font-family: tf2;
    src: url(../css/tf2build.ttf);
}

@font-face {
    font-family: danub;
    src: url(../css/DANUB___.TTF);
}

@font-face {
    font-family: danube;
    src: url(../css/DANUBE__.TTF);
}

body {
    background-color: #0a0a0a;
    background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    color: #ffffff;
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 11px;
    line-height: 135%;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

a:link {
    text-decoration: none;
    color: #00ff00;
}

a:active {
    color: #00aa00;
}

a:visited {
    text-decoration: none;
    color: #00ff00;
}

a:hover {
    color: #00cc00;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
}

.inputbox {
    border: 1px solid #333;
    width: 105px;
    font-size: 14px;
    background-color: #1a1a1a;
    color: #00ff00;
    width: 200px;
    padding-left: 2px;
}

.dbg.b {
    font-size: 12px;
    font-weight: bold;
    color: #00ff00;
}

/** ================ Permissions ================ **/

.tablerow1 {
    background-color: #0f0f0f;
    color: #fff;
    padding:6px;
}

.tablerow2 {
    background-color: #1a1a1a;
    border-color: #00ff00;
    border-style:solid;
    border-width:1px;
    padding:6px;
    color:#fff;
}

.tablerow4 {
    background-color: #1a1a1a;
    border-style:solid;
    border-width:1px;
    padding:6px;
    color:#00ff00;
}

/* =============== FORMS ==================== */

.badentry{
    color:#ff0000;
    width:195px;
    display:none;
}

/* ================ Popup Boxes ============== */
.dialog-holder{
    border-collapse:collapse;
    margin:auto;
    table-layout:fixed;
    width:465px;
}

td.dialog-topleft{
    background-image:url(../images/dialog/dialog_topleft.png) !important;
}
td.dialog-border{
    background-image:url(../images/dialog/dialog_border.png) !important;
}
td.dialog-topright{
    background-image:url(../images/dialog/dialog_topright.png) !important;
}
td.dialog-bottomright{
    background-image:url(../images/dialog/dialog_bottomright.png) !important;
}
td.dialog-bottomleft{
    background-image:url(../images/dialog/dialog_bottomleft.png) !important;
}

td.dialog-topleft, td.dialog-topright, td.dialog-bottomright, td.dialog-bottomleft {
    height:10px;
    overflow:hidden;
    padding:0px !important;
    width:10px !important;
}

h2{
    color:#00ff00;
    font-size:14px;
    font-weight:bold;
    margin:0px;
    display:block;
    padding:4px 10px 5px;
}

h2.error{
    background:#aa0000 none repeat scroll 0%;
    border:1px solid #ff0000;
}

h2.info{
    background:#0066aa none repeat scroll 0%;
    border:1px solid #0088cc;
}

h2.warning{
    background:#aa8800 none repeat scroll 0%;
    border:1px solid #ccaa00;
}

h2.ok{
    background:#00aa00 none repeat scroll 0%;
    border:1px solid #00ff00;
}


.icon-ok{
    background-image:url(../images/ok.png);
    float:left;
    height:48px;
    overflow:hidden;
    padding:0px !important;
    width:48px !important;
}
.icon-error{
    background-image:url(../images/warning.png);
    float:left;
    height:48px;
    overflow:hidden;
    padding:0px !important;
    width:48px !important;
}
.icon-warning{
    background-image:url(../images/warning.png);
    float:left;
    height:48px;
    overflow:hidden;
    padding:0px !important;
    width:48px !important;
}
.icon-info{
    background-image:url(../images/info.png);
    float:left;
    height:48px;
    overflow:hidden;
    padding:0px !important;
    width:48px !important;
}


.dialog-content{
    background:#0f0f0f none repeat scroll 0%;
    border-color:#00ff00;
    border-style:solid;
    border-width:0px 0px 1px 0px;
}
div.dialog-body{
    border-bottom:1px solid #333;
    padding:10px;
}
div.dialog-control{
    background:#1a1a1a none repeat scroll 0%;
    padding:8px;
    text-align:right;
    vertical-align:bottom
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* ================ STRUCTURE ================ */

#mainwrapper {
    flex: 1;
    width: 984px;
    margin: 0 auto;
    text-align: left;
    height: 100%;
    background-color: #0f0f0f;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1), 
                inset 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

#mainwrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.05);
    pointer-events: none;
}

#header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #0a0a0a;
    border-bottom: none;
}

#tabsWrapper {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    height: 50px;
    background-color: #111;
    border-bottom: none;
}

#innerwrapper {
    text-align: left;
}
#navigation {
    width: 100%;
    height: 22px;
}

#breadcrumb {
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #666;
}

#breadcrumb a {
    color: #00ff00;
}

#content_title {
    font-size: 26px;
    color: #00ff00;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

#content {
    height: 100%;
    overflow:hidden;
}

#footer {
    clear:both;
    color: #444;
    width: 100%;
    padding: 20px 0 20px 0;
    background-color: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    margin-top: 40px;
}

/** ================ Header ================ **/

#head-logo {
    text-align: center;
}

#head-logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

#search {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

#search form {
    display: flex;
    gap: 5px;
    align-items: center;
    background-color: #111;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #222;
}

.searchbox {
    width: 250px;
    padding: 10px 15px;
    background-color: #1a1a1a;
    color: #00ff00;
    border: 1px solid #333;
    font-size: 14px;
    box-sizing: border-box;
}

.searchbox:focus {
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    outline: none;
}

/** ================ Tabs ================ **/

#tabs {
    float: left;
    width: 100%;
    margin-left: 0;
}

#tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#tabs ul li {
    float: left;
}

#tabs ul li a {
    border: 0;
    display: block;
    padding: 0 16px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: bolder;
    line-height: 50px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #111;
}

#tabs ul li a:hover {
    border: 0;
    color: #00ff00;
    background-color: #1a1a1a;
}

#tabs ul li.active {
}

#tabs ul li.active a {
    padding: 0 16px;
    color: #00ff00;
    background-color: #1a1a1a;
    border-bottom: 2px solid #00ff00;
}

#tabs ul li.active a:hover {
    color: #00ff00;
    text-decoration: none;
}

h4 {
    margin:0px;
    color: #fff;
}

h3 {
    margin-top:5px;
    margin-bottom:15px;
    font-size: 12px;
    padding: 10px;
    font-weight: bold;
    background-color: #1a1a1a;
    color: #00ff00;
    border: 1px solid #00ff00;
}

/** ================ ToolTips ================ **/
.tool-tip {
    color: #fff;
    width: 139px;
    z-index: 13000;
    text-align:left;
}

.tool-title {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    color: #00ff00;
    border-bottom: #00ff00 dotted 1px;
    padding: 8px 8px 4px;
    background-color: rgba(0, 255, 0, 0.1);
}

.tool-text {
    font-size: 11px;
    padding: 4px 8px 8px;
    background-color: rgba(0, 255, 0, 0.05);
}
.perm-tip {
    color: #fff;
    width: 210px;
    z-index: 13000;
    text-align:left;
}

.perm-title {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    color: #00ff00;
    border-bottom: #00ff00 dotted 1px;
    padding: 8px 8px 4px;
    background: url(../images/tooltip_sqr.png) top left;
}

.perm-text {
    font-size: 11px;
    padding: 4px 8px 8px;
    background: url(../images/tooltip_sqr.png) bottom right;
}

/** ================ Navigation ================ **/

#nav {
    font-family: tf2;
    position: absolute;
    top: 10px;
    color: #00ff00;
    float: left;
    width: 74%;
    font-size: 13px;
    transition: all 0.5s ease;
}

a.nav_link:link,
a.nav_link:visited {
    color: #00ff00;
    text-decoration: none;
    padding: 0 5px;
}

a.nav_link:hover {
    color: #00cc00;
}

#nav a:hover, #nav a.first:hover {
    color : #00ff00;
    text-decoration: none;
    transition: all 0.5s ease;
}
#nav a {
    color: #00ff00;
}
#nav a.first {
    border-left: 0px none;
}

#nav a.active {
    color: #00cc00;
}

#searchbtn{
    width: 100%;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.button {
    border: none;
    padding: 10px 20px;
    color: #fff;
    background-color: #00aa00;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
    height: 42px;
    box-sizing: border-box;
}

.button:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

/** ================ Content ================ **/

.btn{
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-weight:400;
    font-size: 13px;
    color: #fff;
    border:1px solid;
    border-radius: 3px;
    padding:6px 12px;
    transition: all 0.5s ease;
}

.btnhvr{
    color: #fff;
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-weight: 400;
    border: 1px solid;
    border-radius: 3px;
    padding: 6px 12px;
    transition: all 0.5s ease;
}

.game{
    background-color: #00aa00;
    border-color: #00ff00;
}
.game:hover {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}
.ok{
    background-color: #00aa00;
    border-color: #00ff00;
    color: #fff;
}
.ok:hover {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}
.save{
    background-color: #550055;
    border: 1px solid #aa00aa;
    color: #fff;
}
.save:hover {
    background-color: #aa00aa;
    border: 1px solid #aa00aa;
}
.cancel{
    background-color: #aa0000;
    border: 1px solid #ff0000;
    color: #fff;
}
.cancel:hover {
    background-color: #ff0000;
    border: 1px solid #ff0000;
}
.login{
    width: 100%;
    text-transform: uppercase;
}
.refresh{
    background-color: #0088aa;
    border-color: #00aacc;
    color: #fff;
}
.refresh:hover {
    background-color: #00aacc;
    border-color: #00aacc;
}

.msg-button {
    float:right;
    position:absolute;
    top:85px;
    left:480px;
}
.msgbox-border {
    position:fixed !important;
    position:absolute;
    overflow:hidden;
    top:250px;
    padding:15px;
    margin: auto 210px;
    width: 520px;
}
#msg-red {
    background-color: rgba(170, 0, 0, 0.2);
    border:#ff0000 1px solid;
    color:#ff4444;
    width: 500px;
    padding: 8px;
    height: 75px;
    overflow:hidden;
}

#msg-red-debug {
    background-color: rgba(170, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff4444;
    width: 100%;
    padding: 8px;
    margin: 10px auto;
    overflow: hidden;
}

#msg-blue-debug {
    background-color: rgba(0, 100, 170, 0.2);
    border: 1px solid #0088cc;
    color: #44aaff;
    width: 100%;
    padding: 8px;
    margin: 10px auto;
    overflow: hidden;
}

#msg-red b, #msg-green b, #msg-blue b, #msg-red-debug b,#msg-blue-debug b, #msg-green-debug b {
    font-size: 16px;
}
#msg-red i, #msg-blue i, #msg-green i, #msg-red-debug i, #msg-blue-debug i, #msg-green-dbg i {
    float:left;
    margin-right: 7px;
}
#msg-green {
    background-color: rgba(0, 170, 0, 0.2);
    border:#00ff00 1px solid;
    color:#00ff00;
    width: 500px;
    padding: 8px;
    height: 75px;
    overflow:hidden;
}

#msg-green-dbg {
    background-color: rgba(0, 170, 0, 0.2);
    border:#00ff00 1px dotted;
    color:#00ff00;
    width: 75%;
    padding: 8px;
    margin: 10px auto;
    overflow:hidden;
}

#msg-blue {
    background-color: rgba(0, 100, 170, 0.2);
    border:#0088cc 1px solid;
    color:#44aaff;
    width: 500px;
    padding: 8px;
    height: 75px;
    overflow:hidden;
}
#log_res {
    overflow: auto;
}


.front-module-line {
    background-color: #1a1a1a;
    color: #00ff00;
}

}

/** ================ Login ================ **/

#login {
    width: 305px;
    height: 260px;
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
    margin: 30px auto;
    padding: 12px;
}

#lostpassword {
    width: 305px;
    margin: 30px auto;
    padding: 12px;
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
}


#loginLogo {
    text-align: center;
    height: 60px;
}

#loginUsernameDiv,
#loginPasswordDiv,
#loginRememberMeDiv,
#loginSubmit {
    padding: 6px 0;
}


.loginmedium {
    width: 278px;
    padding: 6px 12px;
    font-size: 18px;
    border: 1px solid #333;
    border-radius: 3px;
    background-color: #0f0f0f;
    color: #00ff00;
}

.loginmedium:focus {
    border-color: #00ff00;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

#loginSubmit {
    text-align: right;
}

#loginbutton {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #00aa00;
    border: 2px outset #00ff00;
    color: #FFF;
    font-weight: 700;
}

#loginOtherlinks {
    border-top: 1px solid #333;
    text-align: center;
    padding: 8px 0;
    margin-top: 26px;
}

#loginOtherlinks a {
    color: #00ff00;
}



/** ================ Admin ================ **/

.rowdesc {
    color:#00ff00;
    font-weight:bold;
}

/* CPanel */
#cpanel {
    width: 100%;
    height: 120px;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
}

#cpanel ul {
    margin: 0;
    padding: 10px;
    list-style: none;
}

#cpanel ul li {
    margin-right: 2px;
    float: left;
    text-align: center;
}

#cpanel ul li a {
    display: block;
    height: 97px !important;
    height: 100px;
    width: 108px !important;
    width: 110px;
    vertical-align: middle;
    text-decoration: none;
    padding: 2px 5px 1px 5px;
    margin-right: 10px;
    background-color: #0f0f0f;
    border: 1px solid #333;
}

#cpanel ul li a:hover {
    color : #00ff00;
    padding: 3px 4px 0px 6px;
    text-decoration: none;
    border-color: #00ff00;
    background-color: #1a1a1a;
}

#cpanel ul li.active {
}

#cpanel ul li img {
    margin-top: 13px;
}

/* Admin Page Menu */

#admin-page-menu {
    width: 20%;
    float: left;
}

/* Admin Page Content */

#admin-page-content {
    width: 75%;
    float: right;
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 10px;
    color: #fff;
}

/** ================ Permissions ================ **/
#permis-drop{
    width: 676px;
    float: right;
    height: 100%;
    border: 1px solid #333;
    overflow:hidden;
    padding:7px;
    margin: 0 auto 0 auto;
    background-color: #1a1a1a;
}
.permis-container {
    width: 690px;
    float: none;
    height: 100%;
    overflow:hidden;
}

.permis-container ul {
    margin: 0;
    padding: 10px;
    list-style: none;
}

.permis-container ul li {
    margin-right: 2px;
    float: left;
    text-align: center;
}

.permis-container ul li a {
    display: block;
    height: 37px;
    width: 100px;
    vertical-align: middle;
    text-decoration: none;
    border: 1px solid #333;
    padding: 7px 5px 1px 5px;
    margin-right: 20px;
    margin-bottom:20px;
    background-color: #0f0f0f;
    color: #fff;
}
.permis-container ul li a:hover {
    color : #00ff00;
    background-color: #1a1a1a;
    border: 1px solid #00ff00;
    padding: 8px 4px 0px 6px;
    cursor:move;
}

/** ================ Frontpage ================ **/

#front-introduction {
    padding: 5px;
}

#front-servers {
    margin-bottom: 30px;
}

#front-servers hr {
    border: 1px solid #1a1a1a;
    border-top: 1px solid #00ff00;
    margin-bottom: 5px;
}

.front-module {
    width: 410px;
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
}
.front-module-intro {
    margin: 11px;
}

.fmsd {
    font-size: 10px;
}

/** ================ Submit ================ **/

#submit-main {
    background-color: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 10px;
}

.faux-button {
    padding: 2px 10px;
    font-size: 11px;
    background-color: #1a1a1a;
    border: 2px outset #333;
    color: #00ff00;
    border: 1px solid #333;
    font-weight: 600;
    letter-spacing: 1px;
}

.mandatory {
    color:#ff0000;
}

/** ================ Servers ================ **/

#servers {
    width: 850px;
    padding: 5px;
    border: 1px solid #1a1a1a;
    border-top: 2px solid #00ff00;
    background-color: #0f0f0f;
}

#singleserver {
    width: 500px;
    padding: 5px;
    border: 1px solid #1a1a1a;
    border-top: 2px solid #00ff00;
    float: left;
    background-color: #0f0f0f;
}
#singleoverview {
    width: 350px;
    padding: 5px;
    border: 1px solid #1a1a1a;
    border-top: 2px solid #00ff00;
    float: right;
    background-color: #0f0f0f;
}

.activeplayer {
    border-bottom: 1px solid #1a1a1a;
    border-top: 1px solid #00ff00;
    background-color: #1a1a1a;
}

/** ================ Banlist ================ **/

.tbl_hover {
    cursor: pointer;
    background-color: #1a1a1a;
}
.tbl_out {
    background-color: #0f0f0f;
}

table.listtable {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    border: 1px solid;
    border-color: #1a1a1a;
    border-collapse:collapse;
}

table.listtable2 {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    color: #ffffff;
    border: #333 solid;
    border-width : 1px 1px 1px 1px;
}

table.listtable3 {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 11px;
    color: #ffffff;
    border: #333 solid;
    border-width : 0px 0px 0px 0px;
}

td.listtable_top {
    font-size: 11px;
    font-weight: bold;
    background-color: #1a1a1a;
    padding: 3px 10px 3px 10px;
    color: #00ff00;
    height: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #00ff00;
}

a.listtable_top {
    color: #00ff00;
}


td.listtable_1 {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    padding-top: 4px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    background-color: #0f0f0f;
    color: #fff;
    border-bottom: 1px solid #222;
}

td.listtable_1:hover {
    background-color: #1a1a1a;
}

td.listtable_1_unbanned {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    padding-top: 4px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    background-color: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border-left: 3px solid #00ff00;
}

td.listtable_1_permanent {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    padding-top: 4px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border-left: 3px solid #ff4444;
}

td.listtable_1_banned {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    padding-top: 4px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    background-color: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    border-left: 3px solid #ffaa00;
}

td.listtable_2 {
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    font-size: 10px;
    border: #333 solid;
    border-width: 0px 0px 1px 1px;
    padding-top: 2px;
    padding-right: 4px;
    padding-bottom: 2px;
    padding-left: 4px;
    background-color: #1a1a1a;
    color: #fff;
}

.ban-edit {
    padding: 5px;
}

.ban-edit ul {
    margin: 0;
    padding: 0 10px;
    list-style: none;
}

.ban-edit ul li {
    text-align: left;
}

.ban-edit li a {
    display: block;
    height: 20px;
    text-decoration : none;
    border-bottom: 1px solid #333;
    padding: 2px 5px 1px 5px;
    color: #00ff00;
}

.ban-edit ul li a:hover {
    color : #00ff00;
    padding: 3px 4px 0px 6px;
    background-color: #1a1a1a;
}

#banlisttitle {
    width: 50%;
    float: left;
    color: #00ff00;
}

#banlist-nav {
    width: 60%;
    float: right;
    text-align: right;
}

#banlist {
    width: 100%;
    float:left;
    margin-top: 10px;
}


/** ================ Theme Page CSS ================ **/
#current-theme-holder {
    height: 235px;
    background: #1a1a1a;
    border: 1px solid #00ff00;
    padding: 5px;
}

.largetitle {
    font-size: 18px;
    border-bottom: 1px dotted #00ff00;
    line-height: 20px;
    color: #00ff00;
}
#current-theme-holder b {
    font-size: 16px;
    border-bottom: 1px dotted #00ff00;
    color: #00ff00;
}

#current-theme-screenshot {
    width: 250px;
    float: left;
    border: 3px solid #333;
    clear: none;
    margin-top: 10px;
}

#current-theme-details {
    width: 370px;
    float: right;
    clear: none;
    margin-top: 10px;
    color: #fff;
}


#theme-list ul {
    margin: 2px;
    padding: 0 10px;
    list-style: none;
}

#theme-list ul li {
    text-align: left;
    margin: 3px;
}

#theme-list ul .active
{
    color : #00ff00;
    font-weight: bold;
}

#theme-list ul li a {
    display: block;
    height: 20px;
    text-decoration : none;
    border-left: 5px solid #333;
    padding: 2px 5px 1px 5px;
    color: #fff;
}

#theme-list ul li a .tab-img {
    vertical-align:baseline;
    border:none;
}

#theme-list ul li a:hover {
    color : #00ff00;
    border-left: 5px solid #00ff00;
    padding: 2px 5px 1px 5px;
}

#theme-list ul li.active a:hover  {
    color : #00ff00;
    background-color: #0f0f0f;
    border: 1px solid #00ff00;
    border-left: 5px solid #00ff00;
    background-image: url(../images/admin/rightarrow.png);
    background-position: center right;
    background-repeat: no-repeat;
    padding: 2px 5px 1px 5px;
}

/** ======= Context Menu Styles ======= **/

div.contextmenu {
    position: absolute;
    top: 0;
    left: 0;
    font-family: Verdana, Arial, Tahoma, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-left: 5px solid #00ff00;
}
div.contextmenu a {
    display: block;
    text-decoration: none;
    cursor: default;
    outline: none;
    font-size: 11px;
    color: #fff;
}
div.contextmenu .separator {
    height: 1px;
    padding: 0;
    overflow: hidden;
}

.contextmenu {
    width: 12em;
    border-top: 1px solid #333;
    border-right: 1px solid #00ff00;
    border-bottom: 1px solid #00ff00;
    padding: 2px 0;
}
.contextmenu a {
    color: #fff;
    padding: 4px 15px;
    margin: 0 2px;
}
.contextmenu a:hover {
    background-color: #0f0f0f;
    color: #00ff00;
}
.contextmenu a.disabled {
    color: #666;
}
.contextmenu a.disabled:hover {
    background: #0f0f0f;
    color: #666;
}
.contextmenu .separator {
    border-bottom: 1px solid #fff;
    background: #333;
    margin: 4px 4px;
}
.contextmenu .head {
    font-size: 12px;
    background-color: #1a1a1a;
    padding-top: 4px;
    padding-right: 5px;
    padding-bottom: 3px;
    padding-left: 5px;
    color: #00ff00;
}

.select {
    background: #1a1a1a;
    font-size: 13px;
    padding: 5px 8px;
    border: 1px solid #333;
    border-radius: 3px;
    color: #00ff00;
}

.select:focus {
    border-color: #00ff00;
    outline: none;
}

.textbox {
    background: #1a1a1a;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid #333;
    border-radius: 3px;
    color: #00ff00;
}

.textbox:focus {
    border-color: #00ff00;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.file {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 3px;
    color: #00ff00;
}

.user {
    color: #00ff00;
    float: right;
    margin-top: 18px;
    margin-right: 10px;
}

.user a:visited, .user a:link, .user a:hover {
    color: #00ff00;
}

.front-module-header {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 600;
    background-color: #111;
    color: #00ff00;
    border-bottom: 1px solid #00ff00;
}

#breadcrumb > a:last-child {
    font-weight: 600;
}

hr {
    border: 1px solid #1a1a1a;
    border-top: 1px solid #00ff00;
}

#admin-page-menu > a {
    display: block;
    height: 20px;
    text-decoration : none;
    padding: 9px 0px 3px 8px;
    background-color: #1a1a1a;
    color: #fff;
    cursor: pointer;
    border-left: 3px solid #00ff00;
}

#admin-page-menu > a:hover {
    color : #00ff00;
    background-color: #0f0f0f;
}

#admin-page-menu > .active {
    font-weight: bold;
    background-color: #0f0f0f;
}

.tabcontent {
    display: none;
}

.tabcontent:first-of-type {
    display: block;
}

/** ======= Mobile Design Styles ======= **/

@media only screen and (min-width: 1280px) {
    .dashboard-comm-blocks {
        float: left;
        width: 49%;
    }
    .dashboard-ban-blocks {
        float: right;
        width: 49%;
    }
    .dashboard-blocks-separate {
        display: none;
    }
    .dashboard-ban-block-date {
        text-align: center;
    }
}

@media only screen and (max-width: 1279px) {
    .dashboard-comm-blocks {
        width: 100%;
    }
    .dashboard-ban-blocks {
        width: 100%;
    }    
    .dashboard-blocks-separate {
        display: block;
    }
    .dashboard-ban-block-date {
        text-align: left;
    }
    
    #header {
        width: 100%;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }    
    #head-logo {
        text-align: center;
    }
    #head-logo img {
        height: 80px;
    }
    #search {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
}