.generic-alert {
  position: fixed;
  bottom: 100px;
  left: 8px;
  right: 8px;
  background-color: #0a0a2a;
  border-radius: 10px;
  padding: 12px 12px 12px 16px;
  z-index: 1000;
  color: white;
  box-shadow: 0 4px 12px rgba(80, 100, 255, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.generic-alert.show {
  opacity: 1;
}

.generic-alert-left {
  display: flex;
  flex: 1;
  align-items: center;
}

.generic-alert-text {
  font-size: 14px;
  line-height: 1.4;
  margin-right: 4px;
}

.generic-alert-button {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #90e0ff;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  font-weight: normal;
  margin: 0;
  box-shadow: none;
}

.generic-alert-close {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  box-shadow: none;
  font-weight: normal;
}

.generic-alert-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  overflow: hidden;
}

.generic-alert-progress-bar {
  height: 100%;
  width: 100%;
  background-color: #90e0ff;
  transition: transform 0.1s linear;
  transform-origin: left;
  border-radius: 0 0 10px 10px;
}