/* 전체 레이아웃 */
body {
  font-family: "맑은 고딕", "돋움", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* 헤더 */
.headerB {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #4c4cff;
  text-align: center;
  margin: 30px 0;
}

/* 메인 컨테이너 (grid 3분할) */
.container {
  display: grid;
  grid-template-columns: 0.1fr 3fr 0.1fr; /* 좌 15%, 가운데 auto, 우 20% */
  gap: 20px;
  max-width: 1400px;
  margin: 20px auto;
  align-items: start;
}

/* 좌/우 사이드 */
.leftAside {
}

.rightAside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 가운데 메인 */
.main-content {
  background: #fff;
  padding: 15px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  margin-top: 60px;
}

/* 테이블 */
.main-content table {
  width: 100%;
  border-collapse: collapse;
}

.main-content th,
.main-content td {
  padding: 10px;
  border-bottom: 1px solid #dee2e6;
  text-align: center;
}

.main-content th {
  background-color: #f1f1f1;
  font-weight: bold;
}

/* 게임 상세 정보 */
.gList {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.gList li {
  margin-bottom: 5px;
}

.gName {
  font-size: 18px;
  font-weight: bold;
}

.eGName {
  font-size: 14px;
  color: #6c757d;
  margin-left: 10px;
}

/* 버튼 */
button {
  background-color: #007bff;
  border: none;
  padding: 8px 16px;
  margin: 5px;
  font-size: 16px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background-color: #0056b3;
}

/*    페이징 (통일 버전) */
.pager {
  text-align: center;
  margin: 20px 0;
}

.pager a,
.pager span {
  margin: 0 5px;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.pager a {
  color: #4c4cff;
  border: 1px solid #4c4cff;
  transition: all 0.2s;
}

.pager a:hover {
  background: #4c4cff;
  color: white;
}

.active-page {
  font-weight: bold;
  color: white;
  background: #ff6f00;
  border: 1px solid #ff6f00;
}


/* 검색창 */
#searchType,
#keyword {
  padding: 6px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
