.pop_up_container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  .pop_up_body {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
  }

  #close_button {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
  }