/* Optional custom tweaks */
.navbar-brand {
  font-weight: bold;
}

.modal-header {
  border-bottom: 1px solid #dee2e6;
}

/* Custom dropdown hover effect */
.dropdown-item:hover {
  background-color: #0d6efd !important;
  color: white !important;
}

/* Modern Dark Theme & Variables */
:root {
  --bg-dark: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --accent-neon: #a855f7; /* Electric Purple */
  --accent-hover: #d8b4fe;
  --text-main: #f8fafc;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif; /* Modern clean font */
}

/* Glassmorphism Navbar */
.navbar {
  background: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-neon) !important;
}

/* Sexy Glass Modals */
.modal-content {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: var(--text-main);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Buttons */
.btn-primary, .bg-info {
  background: linear-gradient(135deg, var(--accent-neon), #6366f1) !important;
  border: none !important;
  border-radius: 12px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
}

/* Dropdown styling */
.dropdown-menu {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.dropdown-item {
  color: var(--text-main);
}

.dropdown-item:hover {
  background: var(--accent-neon);
  color: white;
}

/* Apply Courier New to the modal body for a "code" look */
.modal-body {
    font-family: "Courier New", Courier, monospace !important;
    font-size: 12pt !important;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

/* Optional: If you want the titles to match the theme */
.modal-title {
    font-family: "Courier New", Courier, monospace;
    font-weight: 700;
    text-transform: lowercase;
}
