/* 🔥 GLOBAL RESET */
body {
  background: #0f0f0f;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* 🔥 NEW ORDER ONLY */
.custom-neworder .well {
  background: #111;
  border: none;
  border-radius: 15px;
  padding: 20px;
}

/* INPUTS */
.custom-neworder .form-control {
  background: #000;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}

/* LABELS */
.custom-neworder label {
  color: #ffcc00;
  font-weight: bold;
}

/* BUTTON */
.custom-neworder .btn-primary {
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  width: 100%;
  padding: 12px;
}

/* BUTTON HOVER */
.custom-neworder .btn-primary:hover {
  opacity: 0.9;
}

/* DESCRIPTION BOX */
.custom-neworder #service_description .panel-body {
  background: #1a1a1a;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
}

/* ALERTS */
.custom-neworder .alert {
  border-radius: 10px;
}

/* SPACING */
.custom-neworder .form-group {
  margin-bottom: 15px;
}

/* HOVER EFFECT */
.custom-neworder .well:hover {
  box-shadow: 0 0 20px rgba(255,204,0,0.2);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-neworder .well {
    padding: 15px;
  }
}
/* 🔥 NAVBAR DESIGN */
.custom-navbar {
  background: #000;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* LOGO */
.custom-navbar .navbar-brand {
  color: #ffcc00 !important;
  font-weight: bold;
}

/* LINKS */
.custom-navbar .navbar-nav > li > a {
  color: #fff !important;
  transition: 0.3s;
}

/* HOVER */
.custom-navbar .navbar-nav > li > a:hover {
  color: #ffcc00 !important;
}

/* ACTIVE */
.custom-navbar .navbar-nav > .active > a {
  background: #ffcc00 !important;
  color: #000 !important;
  border-radius: 6px;
}

/* BALANCE BADGE */
.custom-navbar .badge {
  background: #ffcc00;
  color: #000;
}
.custom-neworder .container {
  max-width: 100%;
}

.custom-neworder .well {
  max-width: 900px;
  margin: auto;
}
/* FIX TEXT INVISIBLE */
.well,
.panel,
.card {
  color: #000 !important;
}
.custom-neworder .row {
  display: flex;
  flex-wrap: wrap;
}

.custom-neworder .col-md-6 {
  padding: 10px;
}

@media (max-width: 768px) {
  .custom-neworder .col-md-6 {
    width: 100%;
  }
}
.custom-neworder .row {
  display: flex;
  flex-wrap: wrap;
}

.custom-neworder .col-md-6 {
  width: 50%;
}

@media (max-width: 768px) {
  .custom-neworder .col-md-6 {
    width: 100%;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  width: 50%;
}

@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
  }
}