﻿.custom-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.alert-frame {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 15px;
  border-radius: 16px;
  width: 370px;
}

.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.alert-title {
  font-size: 17px;
  display: inline-block;
  color: #ff6a00;
  font-weight: bold;
}

.alert-close {
  margin-right: 5px;
  width: 22px;
  height: 22px;
}

.alert-close:hover {
  cursor: pointer;
}

.alert-content {
  white-space: pre-line;
  font-size: 17px;
  padding: 25px 0px 25px 0px;
  color: #666666;
  font-weight: 500;
}

.alert-button-group {
  text-align: right;
  margin: 20px 0 10px 0;
  display: flex;
  justify-content: center;
}

.alert-btn {
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  height: 40px;
  width: 150px;
  border: none;
}

.alert-btn.confirm {
  background-color: #0072ce;
}

.alert-btn.cancel {
  background-color: #c31d1e;
  display: none;
}
