tr {
  vertical-align: middle;
}

.status {
  white-space: nowrap;
}

.actions {
  white-space: nowrap;
}

.actions :not(:last-child) {
  margin-right: 10px;
}

.create-notification {
  width: 100%;
}

.popup-notification {
  padding: 1em 3em;
  position: fixed;
  top: 1em;
  right: 1em;
  border-radius: 0.5em;
  text-align: center;
}

.popup-notification.success {
  background-color: #dff0d8;
  color: #3c763d;
}

.popup-notification.error {
  background-color: #f2dede;
  color: #a94442;
}

.popup-notification.open {
  animation: slideIn 0.5s ease-in-out forwards;
}

.popup-notification.close {
  animation: slideOut 0.5s ease-in-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(-200%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}

.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: -1px;
}

.dot-green {
  background-color: #00ff00;
}

.dot-yellow {
  background-color: #ffff00;
}

.dot-red {
  background-color: #ff0000;
}

.dot-grey {
  background-color: #808080;
}

.dot-orange {
  background-color: #ffa500;
}
