  .dialog_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px;
    z-index: 1000;
    width: 100%;
  }
  .dialog_content{
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: white;
    position: relative;
  }


  #dialog_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .dialog_close_button {
    background: transparent;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 99px;
    color:#a4a4a4;
    position: absolute;
    right: 8px;
    top: 8px;
  }
  .dialog_close_button>div {
    width: 24px;
    height: 24px;
  }
  .dialog_close_button:hover {
    background: #dcdcdc;
    color:#6a6969;
  }
  .dialog_item_content{
    display: none;
  }