.dialog-info-overlay {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(28, 23, 23, 0.4);
  z-index: 9999;
}
.dialog-info-overlay.active {
  display: flex;
}
.dialog-info-box {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.25s ease;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: space-between;
}
.dialog-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.dialog-info-close {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.dialog-info-body {
  flex: 1;
  color: #939393;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
}
.dialog-info-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.dialog-info-cancel {
  height: 50px;
  border-radius: 6px;
  width: 150px;
  border: 1px solid #d0cfcf;
  background: #fff;
  cursor: pointer;
  font-size: 0.8em;
  color: #8d8d8d;
}
