.custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
  }
  
  .alert-frame {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 15px;
    border-radius: 16px;
    width: 360px;
  }
  
  .alert-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
  }
  
  .alert-title {
    font-size: 1.1rem;
    display: inline-block;
    color:#0B4DA2;
    font-weight: bold;
    opacity: 0.8;
  }
  
  .alert-close {
    margin-right: 5px;
    width: 25px;
    height: 25px;
    font-size: 1.1rem;
    color:#0B4DA2;
    opacity: 0.8;
  }
  
  .alert-close:hover {
    cursor: pointer;
  }
  
  .alert-content {
    white-space: pre-line;
    font-size: 0.95rem;
    padding: 25px 0px 25px 10px;
    color: #666666;
    font-weight: 600;
    max-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  .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: 140px;
    border: none;
  }
  
  .alert-btn.confirm {
    background-color: #0B4DA2;
    margin-right:5px;
    opacity: 0.6;
  }
  
  .alert-btn.cancel {
    background-color: #BB271A;
    opacity: 0.6;
  }

  .alert-btn.confirm:hover {
    opacity: 1;
  }
  
  .alert-btn.cancel:hover {
    opacity: 1;
  }
  