body {
    font-size: .85rem;
}
.navbar{
    background-color: #2D033B;
}
table tr th:first-child,
table tr td:first-child {
  width: 50px;
  text-align: center;
}

table tr th span,
table tr td span{
  cursor: copy;
}

#copyNotification {
  display: none;
  position: fixed;
  top: 5px;
  font-size: 13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background-color: #4caf50;
  color: white;
  border-radius: 5px;
  z-index: 999;
}

.login-container {
  width: 300px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

button {
  background-color: #4caf50;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}
.navbar-nav .dropdown-menu {
    right: 0;
    left: auto;
    top: 48px;
    padding: 0;
    margin: 0;
    border-radius: 0;
}
.navbar-expand-sm .navbar-nav .nav-link{
    color: #fff;
}