#custom-sidebar-popup {
    display: none; /* 初期状態として非表示に設定 */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto; /* 必要に応じて調整 */
    max-width: 2000px; /* 最大幅を設定 */
    min-width: 800px; /* 最小幅を設定 */
    height: auto;
    max-height: 90%;
    background-color: white;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 1px solid #0073aa;
    overflow: auto; /* 必要に応じてスクロールバーを表示 */
}

#custom-sidebar-popup .content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#custom-sidebar-popup .column {
    flex-basis: 48%; /* 両カラムの基本幅を設定 */
    margin: 10px; /* 余白を設定 */
    overflow: auto; /* スクロールバーを表示 */
}

#custom-sidebar-popup h2, #custom-sidebar-popup h3 {
    text-align: center;
    color: #0073aa;
}

#custom-sidebar-popup .scrollable-list {
    max-height: 300px; /* 適切な高さに設定 */
    overflow-y: auto; /* 縦方向にスクロール可能に */
}

#custom-sidebar-popup ul {
    list-style-type: none;
    padding: 0;
}

#custom-sidebar-popup li {
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
}

#custom-sidebar-popup li a {
    text-decoration: none;
    color: #333;
    display: block;
}

#custom-sidebar-popup button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: block; /* Center the button */
    margin: 20px auto 0; /* Add margin at the top and auto for the sides */
    border-radius: 5px; /* 角丸の設定 */
}

#custom-sidebar-popup button:hover {
    background-color: #005177;
}
