.alert-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6c757d;
  z-index: 99999999999999999;
}

.alert {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid red;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 300px;
  padding: 10px;
}

.alert-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  border-radius: 50%;
}

.alert-content {
  margin-top: 30px;
}

.dismiss-button {
  background: red;
  border: 5px;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
}

.dismiss-button:hover {
  background: darkblue;
}
