
body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
}

.navbar {
  background-color: #d80404;
}

.navbar-brand {
  color: #fff;
}

.navbar-brand:hover {
  color: #ddd;
}

.container {
  margin-top: 50px;
  flex: 1;
}

.form-control,
.btn {
  border-radius: 5px;
}

.btn-primary {
  background-color: #d80404;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #d62828;
}

.btn-primary:active {
  background-color: #c41717;
  transform: scale(0.98);
}

.btn-primary:click {
  background-color: #d80404;
}

.btn:disabled {
  background-color: #e0e0e0;
  border-color: #ddd;
  color: #aaa;
  cursor: not-allowed;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  /* margin-bottom: 30px; */
  text-align: center;
  color: #d80404;
}

.footer {
  background-color: #d80404;
  color: white;
  padding: 10px;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.alert-custom {
  margin-top: 20px;
  display: none;
}

.alert-danger {
  margin-top: 20px;
}

.select2-container .select2-selection--multiple {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
}

.select2-container .select2-selection--multiple .select2-selection__choice:hover {
  background-color: #d80404;
  color: white;
  border-radius: 3px;
}

.select2-container .select2-results__option:hover {
  background-color: #d80404;
  color: white;
  border-radius: 3px;
}

.form-control:focus {
  border-color: #d80404;
  outline: none;
  box-shadow: none;
}