.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
  color: #06a3da !important;
}

body {
  font-family: Arial, sans-serif;
  background-color: hsl(197, 64%, 95%);
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  outline: none;
}

button {
  background-color: #05222e;
  color: white;
  padding: 14px 20px;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

.alert {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #62a6db;
  background-color: #87cbff;
  color: rgb(31, 56, 76);
}

.dataTables_filter {
  margin-bottom: 10px;
}

.btn-logout {
  background-color: #091e3e;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-logout:hover {
  background-color: #06a3da;
  color: #fff;
}

.btn-logout:active {
  background-color: #06a3da;
  color: #fff;
}

.nav-item a.btn {
  background-color: #091e3e;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item a.btn:hover {
  background-color: #06a3da;
}

.nav-item a.btn:active {
  background-color: #06a3da;
}

button.navbar-toggler {
  width: auto;
}

.form-container {
  width: 500px;
}

@media (max-width: 767px) {
  .form-container {
    width: auto;
  }
}

/* DataTables processing indicator */
div.dataTables_processing {
  color: #091e3e;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}

.datatable-processing-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}