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

  &.modal-open {
    display: flex;
  }

  .modal-content {
    width: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    z-index: 1100;

    .close {
      font-size: 28px;
      font-weight: bold;
      float: right;
      cursor: pointer;
    }

    .modal-body {
      display: flex;

      .image {
        flex: 50%;
        padding: 1rem;

        img {
          width: 100%;
          height: auto;
        }
      }

      .myclub-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .myclub-input-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 10px;
      }

      .myclub-input {
        flex-grow: 1;
        max-width: 70%;
        padding: 2px 10px;
        box-sizing: border-box;
        font-size: 16px;
      }

      .myclub-button-wrapper {
        margin-left: -4px;
      }

      .myclub-button {
        background-color: #3f51b5;
        border: 4px solid;
        border-radius: 4px;
        color: white;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
      }

      .information {
        flex: 50%;

        .name {
          font-size: larger;
          font-weight: bold;
          margin-top: 1rem;
          margin-bottom: 1rem;
        }
      }
    }
  }
}