/* Custom F4WEB Theme CSS */
body {
  background-color: #050b14;
  color: #fcfbf9;
  font-family: 'Inter', sans-serif;
}

/* Scrollbar from index.html */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ccff0033;
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #ccff00;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide Sidebars in Order Form */
.col-md-3.pull-md-left.sidebar {
  display: none !important;
}

.col-md-9.pull-md-right.main-content {
  width: 100% !important;
  float: none !important;
  flex: 0 0 100%;
  max-width: 100%;
}