.le-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
  }

  .le-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .le-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .le-modal-header h3 {
    margin: 0;
    font-size: 18px;
  }

  .le-modal-body {
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .le-modal-footer {
    text-align: center;
  }

  .close-button {
    color: #aaa;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .close-button:hover {
    color: #555;
  }

  .close-button.btn {
    min-width: 100px;
    border-radius: 30px;
    background-color: #e9327e;
  }
  .close-button.btn:hover {
    color: #fff;
    opacity: 1;
  }
  
  .le-modal-button {
    padding: 8px 16px;
    background-color: #e9327e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .le-modal-button:hover {
    opacity: 0.8;
  }


  @media (width > 749px) {
    .le-modal-header h3 {
      font-size: 24px;
    }
  }


  @media (width > 1199px) {
    .le-modal-header h3 {
      font-size: 30px;
    }
  }