.table2 {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 10px;
}

.table2 tr,
.table2 td {
    border: 1px dotted black;
}

.image-name-cell {
    /*background-color: #1e1e1e;*/
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    vertical-align: top;
    padding: 10px;
    width: 207px;
    /* 너비 조정 */
    overflow: hidden;
}

.image-name-cell img.game-image {
    display: block;
    margin: 0 auto;
    width: 177px;
    /* 너비 조정 */
    height: 234px;
    /* 높이 조정 */
    object-fit: cover;
    /* 이미지가 비율을 유지하면서 채워지도록 */
    border-radius: 8px;
    border: 2px solid black;
}

.image-name-cell a {
    text-decoration: none;
    color: black;
    /* 기본 텍스트 색상 */
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

.image-name-cell a:hover {
    color: #007bff;
    /* 마우스를 올렸을 때 텍스트 색상 */
}

.pagination a.active {
    color: #007bff;
    font-weight: bold;
}

.notice {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    color: black;
    text-align: left;
    font-size: 15pt;
}

.info {
    padding-left: 40px;
    font-size: 12pt;
}

.search-form {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.search-form input[type="text"] {
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ccc;
    width: 300px;
    margin-right: 10px;
}

.search-form button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #0056b3;
}

h2 {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #ff6699;
    padding-left: 10px;
    margin-bottom: 16px;
}