/* Add Quicksand font to all pages */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');
body {
  background: #181a1b;
  color: #e0e0e0;
  font-family: 'Quicksand', Arial, sans-serif;
}
.navbar, .modal-content {
  background: #23272a;
}
.card {
  background: #23272a;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.btn-primary {
  background: #5865f2;
  border: none;
}
.btn-primary:hover {
  background: #4752c4;
}
/* Smooth popup animation */
.fade-in {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
body, .text-white, .navbar, .card, .form-label, .form-control, .table-dark, .table-striped, .btn, .navbar-brand, .navbar-text, h1, h2, h3, h4, h5, h6, p, small, label, th, td, .alert, .modal-content {
  color: #fff !important;
}
.form-control, .form-label, .table-dark, .table-striped, .card, .modal-content, .alert {
  background: #23272a !important;
  border-color: #444 !important;
}
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
  background: #23272a !important;
  color: #fff !important;
}
