/* ✅ 기존 관리자 페이지 설정 유지 */
.bottom-logo-preview {
  max-width: 150px;
  margin-bottom: 10px;
  display: block;
}

/* TinyMCE 에디터 영역 */
.tox-tinymce {
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* 링크 목록 테이블 우측 정렬 */
.category-table td:last-child a {
  color: #e74c3c;
  font-weight: bold;
}

/* 하단 정보 관리 form 스타일 보완 */
.bottom-info-form input[type="color"] {
  width: 80px;
  height: 40px;
  padding: 2px;
}


/* ✅ 사용자 페이지에서 하단 출력용 layout */
.bottom {
  width: 100%;
  padding: 30px 0;
  font-size: 14px;
}

.bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.bottom-logo {
  flex: 0 0 160px;
}

.bottom-main {
  flex: 1 1 auto;
  min-width: 300px;
  line-height: 1.6;
}

.bottom-links {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.bottom-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.bottom-links a:hover {
  text-decoration: underline;
}
