.CodeMirror {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.form-control {
  width: auto;
  display: inline-block;
}

.progress-bar {
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }

  10% {
    transform: translateX(0) scaleX(0.1);
  }

  100% {
    transform: translateX(100%) scaleX(0.2);
  }
}

.btn-custom {
  background-color: #f8f9fa;
  border: 1px solid #6c757d;
  color: #212529;
}

.btn-custom:hover {
  background-color: #e2e6ea;
  border-color: #5a6268;
  color: #212529;
}

.menu_action {
  color: #212529;
  text-decoration: none;
}

.form-group label {
  width: 100px;
  white-space: nowrap;
}

.form-group input[type="text"] {
  width: 100%;
}


.highlight-empty {
  border: 2px solid red;
}
