/* modal alert */
.form-inline {
  display: flex;
  justify-content: flex-end;
}

.search-btn-group {
  margin-left: 10px;
}

.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content {
  border-radius: 16px;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.zoom-in .modal-dialog {
  animation: zoomIn 0.3s ease-out;
}

.modal-header {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin-inline-end: auto;
  font-size: 20px;
}
