:root {
  --background: #000000; /* Black background */
  --foreground: #ffffff; /* White text color */
  --icon-color: #ffffff; /* White icon color */
}

html,
body {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* General Element Styling */
.card, .navbar, .table, .form-control {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  border-color: var(--foreground) !important;
}

.icon {
  color: var(--icon-color) !important;
}

/* Navbar Links Hover Effects */
.nav-link:hover, .navbar-toggler:focus {
  color: #00bcd4 !important; /* Highlight color on hover */
  text-decoration: underline;
}

/* Remove Outline from Menu Button */
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Table Styling */
.table th, .table td {
  border: 1px solid var(--foreground) !important;
}

.table th {
  background-color: var(--background) !important;
}

.table tr:hover {
  background-color: #1e1e1e !important; /* Slightly lighter black on hover */
}

/* Button Styling */
button {
  background-color: #00bcd4;
  color: var(--background);
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #008c9e;
  color: var(--foreground);
}

/* Cursor Blinking Effect */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.cursor {
  background-color: var(--foreground);
  width: 2px;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
