// _modal.scss

.wemeet-del-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.wemeet-del-modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;

  .close-button {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #003B7A;
    position: absolute;
    top: 0;
    right: 5px;
    padding: 0;
    margin: 0;
    &:hover {
      color: #0074A6;
    }
  }

  .modal-header {
    h2 {
      font-weight: 700;
    }
  }

  .modal-body {
    margin-bottom: 40px;
  }

  .modal-buttons {
    display: flex;
    justify-content: flex-end;

    button {
      margin-left: 10px;
      padding: 8px 12px;
      cursor: pointer;
      transition: background-color 0.3s ease, border-color 0.3s ease;

      &.confirm-button {
        background-color: #003B7A;
        color: #fff;
        border: 1px solid #003B7A;
        border-radius: 8px;

        &:hover {
          background-color: #0074A6;
          border-color: #0074A6;
        }
      }

      &.cancel-button {
        background-color: #f44336;
        color: #fff;
        border: 1px solid #f44336;
        border-radius: 8px;

        &:hover {
          background-color: #d32e2e;
          border-color: #d32e2e;
        }
      }
    }
  }
}
  