@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Open+Sans:wght@400;600&display=swap');
/* ===== 기본 공통 ===== */
body {
    font-family: "맑은 고딕", "돋움", sans-serif;
    font-size: 14px;
    color: #333;
    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;
}

/* ===== 레이아웃 ===== */
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;   /* 좌우 여백 */
    gap: 40px;            /* 사이드 간격 */
}

/* 왼쪽 사이드 */
.leftAside {
}

/* 메인 컨텐츠 */
.main-content {
    flex: 1;
    min-width: 700px;     /* 최소 크기 확보 */
    margin-top: 60px;
}

/* 오른쪽 사이드 */
.rightAside {
    width: 250px;
    flex-shrink: 0;
}

/* ===== 컨텐츠 박스 ===== */
.table-container {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 50px;
}

/* ===== 테이블 ===== */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
th {
    background-color: #f1f3f5;
    color: #333;
    font-weight: 600;
    padding: 12px;
    border-bottom: 2px solid #dee2e6;
    text-align: center;
}
td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}
tr:hover {
    background-color: #f9f9f9;
}
.eGName {
    color: #6c757d;
}

/* ===== 버튼 ===== */
.btn-board {
    border: none;
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}
.btn-board:hover {
    background-color: #0056b3;
}
.searchB {
    background-color: #ff6600;
    color: #fff;
}
.searchB:hover {
    background-color: #e65c00;
}

/* ===== 검색 영역 ===== */
.search, .keyword {
    padding: 6px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* ===== 페이징 ===== */
.pager {
    margin-top: 15px;
    text-align: center;
}
.pager a, .pager span {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    color: #007bff;
    font-size: 14px;
}
.pager a:hover {
    background-color: #f1f3f5;
}
.active-page {
    font-weight: bold;
    background-color: #ff6f00;
    color: #fff !important;
    border: 1px solid #ff6f00;
}
td.game-name {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ===============================
   검색 박스
=============================== */
.search-box {
  text-align: center;
  margin: 20px auto;
}

.search-box input,
.search-box select,
.search-box button {
  padding: 8px 12px;
  margin: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.search-box input {
  width: 220px;
}

.search-box button {
  background: #ff6f00;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.search-box button:hover {
  background: #e65c00;
}