body {
  background-color: #e9ecef;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  background-color: #1a1a2e;
}

.navbar-brand,
.nav-link {
  color: #ffffff !important;
}

.navbar-brand {
  font-weight: 600;
}

.nav-link {
  font-weight: 400;
}

.nav-link:hover {
  color: #e94560 !important;
  text-decoration: underline;
}

.alert {
  border-radius: .375rem;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.container {
  padding: 20px;
  background-color: #ffffff;
  border-radius: .375rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

a {
  color: #1a1a2e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  padding: 10px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary {
  background-color: #1a1a2e;
  color: #fff;
}

.btn-primary:hover {
  background-color: #16213e;
}

.btn-success {
  background-color: #0f4c75;
  color: #fff;
}

.btn-success:hover {
  background-color: #083c5d;
}

.btn-danger {
  background-color: #b22222;
  color: #fff;
}

.btn-danger:hover {
  background-color: #8b0000;
}

.table {
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #dee2e6;
}

.table th {
  background-color: #e9ecef;
  font-weight: bold;
}

.table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.table tbody tr:hover {
  background-color: #e9ecef;
}

.pagination {
  margin-top: 20px;
}

.page-item.disabled .page-link {
  cursor: not-allowed;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.page-item.active .page-link {
  background-color: #1a1a2e; /* Dark navy color */
  border-color: #1a1a2e;
  color: #fff;
}

.page-link {
  color: #1a1a2e;
  padding: 10px;
}

.page-link:hover {
  background-color: #e9ecef;
  color: #16213e; /* Slightly darker navy */
}

.modal-content {
  border-radius: 0.5rem;
}

.modal-header {
  background-color: #1a1a2e; /* Dark navy color */
  color: #fff;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-footer .btn-secondary {
  background-color: #6c757d;
}

.modal-footer .btn-secondary:hover {
  background-color: #5a6268;
}

#callForm .form-check {
  margin: 0;
}

#startCallBtn {
  margin-left: 10px;
}

#deleteSelectedCallsBtn {
  margin-left: 10px;
}

#deleteProvidersBtn {
  margin-left: 10px;
}

#addToBatchBtn {
  margin-left: 10px;
}

#deleteBatchesBtn {
  margin-left: 10px;
}

.login-container,
.signup-container {
  max-width: 500px;
  margin: 200px auto;
  padding: 20px;
  border-radius: .375rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

form .form-label {
  font-weight: bold;
}

p.mt-3 {
  text-align: center;
}
