/* =========================
   HACKER THEME OVERRIDE
   ========================= */

body {
  background: #000 !important;
  background-image: none !important;
  color: #00ff00 !important;
  font-family: "Courier New", monospace !important;
}

/* Text */
p, span, label, li, dt, dd {
  color: #00ff00 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #00ff00 !important;
  text-shadow: 0 0 6px rgba(0,255,0,.6);
}

/* Link */
a {
  color: #00ff88 !important;
}
a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 8px #00ff00;
}

/* Container & panel */
.container,
.panel,
.well,
.thumbnail,
.img-thumbnail {
  background-color: #050505 !important;
  border-color: #00ff00 !important;
  box-shadow: 0 0 15px rgba(0,255,0,.2);
}

/* Table */
.table {
  color: #00ff00 !important;
}
.table thead > tr > th {
  background: #000 !important;
  color: #00ff00 !important;
  border-color: #00ff00 !important;
}
.table-striped > tbody > tr:nth-child(odd) {
  background-color: #050505 !important;
}
.table-hover > tbody > tr:hover {
  background-color: #003300 !important;
}

/* Form */
.form-control {
  background-color: #000 !important;
  color: #00ff00 !important;
  border: 1px solid #00ff00 !important;
  box-shadow: 0 0 8px rgba(0,255,0,.3);
}
.form-control:focus {
  border-color: #00ff00 !important;
  box-shadow: 0 0 12px rgba(0,255,0,.8) !important;
}

/* Button global */
.btn {
  background: transparent !important;
  color: #00ff00 !important;
  border: 1px solid #00ff00 !important;
  box-shadow: 0 0 10px rgba(0,255,0,.4);
  text-shadow: 0 0 4px rgba(0,255,0,.6);
}
.btn:hover {
  background: #00ff00 !important;
  color: #000 !important;
}

/* All button variants */
.btn-primary,
.btn-success,
.btn-warning,
.btn-danger,
.btn-info {
  background: transparent !important;
  color: #00ff00 !important;
  border-color: #00ff00 !important;
}

/* Navbar */
.navbar {
  background: #000 !important;
  border-bottom: 1px solid #00ff00 !important;
}
.navbar a {
  color: #00ff00 !important;
}

/* Code & terminal look */
code, pre {
  background: #000 !important;
  color: #00ff00 !important;
  border: 1px solid #00ff00 !important;
}

/* Scrollbar (Chrome) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #00ff00;
}