.glance {
    background-color: white;
    padding: 0.5rem 2rem;
}

.screen_shot {
    width: 56%;
    height: 100px;
    background-color: #6b6b6b;
    outline: 1px solid red;
    padding: 2rem !important;
}

.tr_content {
    background-color: white !important;
    border-radius: 4px;
}

/* 右側 panel：固定在畫面最右邊，一開始收起來 */
/* #rightPanelId {
    position: fixed;
    top: 46px;
    right: 0;
    width: 320px;
    height: calc(100vh - 46px);

    background-color: #f8f9fa;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1040;
} */

/* .rightpanel-nav {
    display: flex;
    align-items: center;
} */

.group_name_container {
    padding: 0.5rem 2rem;
    /* background-color: #5C6580; */
    border-radius: 4px;
    background: linear-gradient(90deg, #46516d 50.93%, #7286b3 121.62%);
    color: white;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 一列 4 張 */
    gap: 10px;
    align-items: stretch;
}

.image-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1600px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1400px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}