/* Navbar */
.navbar-custom {
  background-color: black;
  padding: 15px;
  text-align: center;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
  color: #ffffff;
  transition: color 0.3s;
  font-size: 16px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
  color: #ef562f;
}

/* Mobile toggle icon background */
.navbar-custom .navbar-toggler {
  border-color: white;
}

.navbar-custom .navbar-toggler-icon {
  background-color: #ffffff;
}

/* Dropdown fix */
.navbar-custom .dropdown-menu {
  background-color: #000000;
  border: none;
}

.navbar-custom .dropdown-item {
  color: #ffffff;
  transition: background-color 0.3s;
}

.navbar-custom .dropdown-item:hover {
  background-color: #333333;
  color: #ef562f;
}

/* Sidebar + Content */
.sidebar,
.contextual-text {
  background-color: #f8f9fa;
  padding: 20px;
  height: 100%;
}

/* Table */
.custom-table {
  width: 100%;
  margin: 10px 0 20px 0;
  border: 1px solid #dee2e6;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}

.custom-table th,
.custom-table td {
  border: 1px solid #dee2e6;
  padding: 12px;
  text-align: center;
}

.custom-table th {
  background-color: #454545;
  color: white;
}

.custom-table tbody tr {
  background-color: #f2f2f2;
}

/* Headings */
h1 {
  font-size: 30px;
}
h2 {
  font-size: 26px;
}

/* Button */
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #333333;
}

/* Optional polish */
.navbar-nav .nav-item {
  margin-left: 8px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
