@charset "UTF-8";
/**
 * interface.scss - 메인 테마 및 기본 UI 설정
 * 다른 모든 SCSS 파일을 import하는 진입점
 */
/**
 * _variables.scss - 전역 변수 정의
 */
/**
 * _mixins.scss - 전역 믹스인 정의
 */
/**
 * _variables.scss - 전역 변수 정의
 */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f4;
  --bg-quaternary: #e9ecef;
  --bg-quinary: #d4e3f0;
  --bg-senary: #c1d7ed;
  --text-primary: #333;
  --text-secondary: #666;
  --text-tertiary: #333;
  --border-primary: #dee2e6;
  --border-secondary: #e9ecef;
  --border-tertiary: #d4e3f0;
  --border-quaternary: #c1d7ed;
  --accent-primary: #007bff;
  --accent-secondary: #0056b3;
  --accent-tertiary: #004085;
  --accent-hover: #e9ecef;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

[data-theme=dark] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #333333;
  --bg-quaternary: #404040;
  --bg-quinary: #4a4a4a;
  --bg-senary: #555555;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-tertiary: #ffffff;
  --border-primary: #404040;
  --border-secondary: #4a4a4a;
  --border-tertiary: #555555;
  --border-quaternary: #606060;
  --accent-primary: #0d6efd;
  --accent-secondary: #0b5ed7;
  --accent-tertiary: #084fa5;
  --accent-hover: #404040;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
}

.admin-container {
  display: grid;
  grid-template-areas: "sidebar header" "sidebar content";
  grid-template-columns: var(--sidebar-width, 250px) 1fr;
  grid-template-rows: 60px 1fr;
  height: 100vh;
  border: 2px solid var(--border-primary);
  transition: grid-template-columns 0.3s ease;
  min-height: 0;
  --sidebar-width: 250px;
}
.admin-container.sidebar-hidden {
  grid-template-columns: 0 1fr;
}
.admin-container.sidebar-hidden .left-menu {
  z-index: -1;
}
@media (max-width: 1024px) {
  .admin-container {
    --sidebar-width: 200px;
  }
}
@media (max-width: 768px) {
  .admin-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "content";
    padding-top: 60px;
  }
  .admin-container.sidebar-hidden {
    grid-template-columns: 1fr;
  }
}

.content-area {
  grid-area: content;
  display: flex;
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 5;
}
.content-area.hide-right {
  grid-template-columns: 1fr 0;
}
.content-area.hide-right .right-content {
  transform: translateX(100%);
  opacity: 0;
}
.content-area.hide-right .resizer {
  display: none;
}
@media (max-width: 768px) {
  .content-area {
    display: block;
    height: 100%;
  }
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 39.9px;
  color: var(--text-secondary);
  font-size: 16px;
}
.loading::before {
  content: "⏳";
  margin-right: 8px;
  animation: spin 2s linear infinite;
}

.error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 39.9px;
  color: #dc3545;
  font-size: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  margin: 20px;
}
.error::before {
  content: "⚠️";
  margin-right: 8px;
}

.content-area-hidden {
  display: none !important;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
  transition: border-color 0.3s ease;
  transition: box-shadow 0.3s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.settings-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-secondary);
}
.settings-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.settings-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-primary);
  display: inline-block;
}
.settings-section h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.theme-selector {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px;
  border: 2px solid var(--border-primary);
  border-radius: 8px;
  transition: all 0.2s;
  background-color: var(--bg-primary);
}
.theme-option:hover {
  border-color: var(--accent-primary);
  background-color: var(--bg-secondary);
}
.theme-option input[type=radio] {
  display: none;
}
.theme-option input[type=radio]:checked + .theme-preview {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.theme-option input[type=radio]:checked ~ span {
  color: var(--accent-primary);
  font-weight: 600;
}
.theme-option span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s;
}

.theme-preview {
  width: 80px;
  height: 60px;
  border: 2px solid var(--border-secondary);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s;
  position: relative;
}
.theme-preview .theme-preview-header {
  height: 20px;
  width: 100%;
}
.theme-preview .theme-preview-body {
  height: 40px;
  width: 100%;
}

.light-theme .theme-preview-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.light-theme .theme-preview-body {
  background-color: #ffffff;
}

.dark-theme .theme-preview-header {
  background-color: #2d2d2d;
  border-bottom: 1px solid #404040;
}
.dark-theme .theme-preview-body {
  background-color: #1a1a1a;
}

.test-content {
  width: 1200px;
  height: 200px;
  background: linear-gradient(45deg, var(--bg-secondary) 25%, transparent 25%), linear-gradient(-45deg, var(--bg-secondary) 25%, transparent 25%);
  background-size: 20px 20px;
  border: 2px dashed var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.tall-content {
  height: 300px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .admin-container {
    --sidebar-width: 200px;
  }
  .right-content {
    --right-width: 200px;
  }
}
@media (max-width: 768px) {
  .admin-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "content";
    padding-top: 60px;
  }
  .admin-container.sidebar-hidden {
    grid-template-columns: 1fr;
  }
  .left-menu {
    display: none;
  }
  .top-nav-menu {
    display: none;
  }
  .mobile-top-nav {
    display: flex;
  }
  .content-area {
    display: block;
    height: 100%;
  }
  .main-content {
    width: 100%;
    max-width: 100%;
  }
  .resizer {
    display: none;
  }
  .right-content {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 100%;
    max-width: 350px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .right-content.show {
    transform: translateX(0);
  }
  .content-area.hide-right .right-content {
    display: block;
    transform: translateX(100%);
  }
  .main-content-header {
    padding: 15px 20px;
  }
  .main-content-header .main-content-header-left .header-icon {
    font-size: 18px;
  }
  .main-content-header .main-content-header-info h2 {
    font-size: 14px;
  }
  .main-content-header .main-content-header-info p {
    font-size: 12px;
  }
  .main-content-body {
    padding: 15px 20px;
  }
  .content-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .content-header p {
    font-size: 14px;
  }
  .content-block {
    padding: 20px;
    margin-bottom: 15px;
  }
  .menu-toggle {
    font-size: 20px;
    padding: 10px;
    display: block !important;
  }
}
@media (max-width: 576px) {
  .mobile-menu-content {
    width: 90%;
  }
  .right-content {
    max-width: 100%;
  }
  .main-content-header {
    padding: 12px 15px;
  }
  .main-content-body {
    padding: 12px 15px;
  }
  .content-block {
    padding: 15px;
  }
  .top-menu {
    display: none !important;
  }
}
@media (max-width: 768px) {
  body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: swipeHint 3s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
  }
  body.menu-shown::after {
    display: none;
  }
  @keyframes swipeHint {
    0%, 100% {
      opacity: 0;
      transform: translateY(-50%) translateX(0);
    }
    50% {
      opacity: 0.6;
      transform: translateY(-50%) translateX(10px);
    }
  }
}
/**
 * menu.scss - 사이드바, 드롭다운, 네비게이션 탭, 브레드크럼
 * 원본 interface.css와 완벽 호환
 */
.top-menu {
  grid-area: header;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
.top-menu .menu-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  margin-right: 20px;
  border-radius: 4px;
  transition: background-color 0.2s;
  color: var(--text-primary);
}
.top-menu .menu-toggle:hover {
  background-color: var(--accent-hover);
}
.top-menu .menu-toggle[aria-expanded=true] {
  background-color: var(--accent-primary);
  color: white;
}
@media (max-width: 768px) {
  .top-menu .menu-toggle {
    font-size: 20px;
    padding: 10px;
    display: block !important;
  }
}
.top-menu .top-nav-menu {
  display: flex;
  gap: 30px;
  flex: 1;
}
@media (max-width: 768px) {
  .top-menu .top-nav-menu {
    display: none;
  }
}
.top-menu .top-nav-item {
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-primary);
}
.top-menu .top-nav-item:hover {
  background-color: var(--accent-hover);
  color: var(--accent-primary);
}
.top-menu .top-nav-item.active {
  background-color: var(--accent-primary);
  color: white;
}
.top-menu .top-menu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-menu .top-menu-actions .theme-toggle {
  background: none;
  border: 1px solid var(--border-primary);
  font-size: 16px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 80px;
  justify-content: center;
}
.top-menu .top-menu-actions .theme-toggle:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-primary);
}
.top-menu .top-menu-actions .theme-toggle .theme-icon {
  font-size: 16px;
}
.top-menu .top-menu-actions .theme-toggle .theme-text {
  font-size: 14px;
}
.top-menu .top-menu-actions .settings-icon {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  color: var(--text-secondary);
}
.top-menu .top-menu-actions .settings-icon:hover {
  background-color: var(--accent-hover);
  color: var(--accent-primary);
}
@media (max-width: 768px) {
  .top-menu {
    padding: 0 15px;
  }
}

.left-menu {
  grid-area: sidebar;
  background-color: var(--bg-tertiary);
  border-right: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  min-height: 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.left-menu.hidden {
  margin-left: -250px;
}
.left-menu .left-menu-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-primary);
  flex-shrink: 0;
}
.left-menu .left-menu-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.left-menu .left-menu-header p {
  font-size: 14px;
  color: var(--text-secondary);
}
.left-menu .left-menu-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.left-menu .left-menu-content::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .left-menu {
    display: none;
  }
}

.menu-item {
  position: relative;
}
.menu-item .menu-item-header {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  text-decoration: none;
}
.menu-item .menu-item-header:hover {
  background-color: var(--accent-hover);
}
.menu-item .menu-item-header.active {
  background-color: var(--accent-primary);
  color: white;
}
.menu-item .menu-item-header span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item .menu-expand-icon {
  font-size: 12px;
  transition: transform 0.2s;
}
.menu-item.expanded .menu-expand-icon {
  transform: rotate(90deg);
}
.menu-item.expanded .submenu {
  max-height: 1000px;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-quaternary);
}
.submenu div.submenu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 25px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-tertiary);
  border-left: 2px solid var(--accent-primary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}
.submenu div.submenu-item:hover {
  background-color: var(--bg-quinary);
}
.submenu div.submenu-item.active {
  background-color: var(--accent-secondary);
  color: white;
}
.submenu div.submenu-item > span:first-child {
  grid-column: 1;
  word-break: break-word;
}
.submenu div.submenu-item .menu-expand-icon {
  grid-column: 2;
  font-size: 12px;
  transition: transform 0.2s;
}
.submenu div.submenu-item.expanded .menu-expand-icon {
  transform: rotate(90deg);
}
.submenu div.submenu-item.expanded .sub-submenu {
  max-height: 500px;
}
.submenu div.submenu-item .sub-submenu {
  grid-column: 1/-1;
}
.submenu a.submenu-item {
  padding: 10px 20px 10px 25px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-tertiary);
  border-left: 2px solid var(--accent-primary);
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
}
.submenu a.submenu-item:hover {
  background-color: var(--bg-quinary);
}
.submenu a.submenu-item.active {
  background-color: var(--accent-secondary);
  color: white;
}
.submenu a.submenu-item.menu-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sub-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-quinary);
}
.sub-submenu div.sub-submenu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 30px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-quaternary);
  border-left: 2px solid var(--accent-secondary);
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}
.sub-submenu div.sub-submenu-item:hover {
  background-color: var(--bg-senary);
}
.sub-submenu div.sub-submenu-item.active {
  background-color: var(--accent-tertiary);
  color: white;
}
.sub-submenu div.sub-submenu-item > span:first-child {
  grid-column: 1;
  word-break: break-word;
}
.sub-submenu div.sub-submenu-item .menu-expand-icon {
  grid-column: 2;
  font-size: 12px;
  transition: transform 0.2s;
}
.sub-submenu div.sub-submenu-item.expanded .menu-expand-icon {
  transform: rotate(90deg);
}
.sub-submenu div.sub-submenu-item.expanded .sub-sub-submenu {
  max-height: 500px;
}
.sub-submenu div.sub-submenu-item .sub-sub-submenu {
  grid-column: 1/-1;
}
.sub-submenu a.sub-submenu-item {
  padding: 8px 20px 8px 30px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-quaternary);
  border-left: 2px solid var(--accent-secondary);
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
}
.sub-submenu a.sub-submenu-item:hover {
  background-color: var(--bg-senary);
}
.sub-submenu a.sub-submenu-item.active {
  background-color: var(--accent-tertiary);
  color: white;
}
.sub-submenu a.sub-submenu-item.menu-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sub-sub-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-senary);
}
.sub-sub-submenu div.sub-sub-submenu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 35px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-quaternary);
  border-left: 2px solid var(--accent-tertiary);
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
}
.sub-sub-submenu div.sub-sub-submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.sub-sub-submenu div.sub-sub-submenu-item.active {
  background-color: var(--accent-quaternary);
  color: white;
}
.sub-sub-submenu div.sub-sub-submenu-item > span:first-child {
  grid-column: 1;
  word-break: break-word;
}
.sub-sub-submenu div.sub-sub-submenu-item .menu-expand-icon {
  grid-column: 2;
  font-size: 12px;
  transition: transform 0.2s;
}
.sub-sub-submenu div.sub-sub-submenu-item.expanded .menu-expand-icon {
  transform: rotate(90deg);
}
.sub-sub-submenu div.sub-sub-submenu-item.expanded .sub-sub-sub-submenu {
  max-height: 500px;
}
.sub-sub-submenu div.sub-sub-submenu-item .sub-sub-sub-submenu {
  grid-column: 1/-1;
}
.sub-sub-submenu a.sub-sub-submenu-item {
  padding: 8px 20px 8px 35px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-quaternary);
  border-left: 2px solid var(--accent-tertiary);
  font-size: 12px;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
}
.sub-sub-submenu a.sub-sub-submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.sub-sub-submenu a.sub-sub-submenu-item.active {
  background-color: var(--accent-quaternary);
  color: white;
}
.sub-sub-submenu a.sub-sub-submenu-item.menu-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sub-sub-sub-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.03);
}
.sub-sub-sub-submenu a.sub-sub-sub-submenu-item {
  padding: 8px 20px 8px 40px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--border-quaternary);
  border-left: 2px solid var(--accent-quaternary);
  font-size: 12px;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
}
.sub-sub-sub-submenu a.sub-sub-sub-submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.sub-sub-sub-submenu a.sub-sub-sub-submenu-item.active {
  background-color: var(--accent-quaternary);
  color: white;
}
.sub-sub-sub-submenu a.sub-sub-sub-submenu-item.menu-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.menu-item.expanded .sub-submenu,
.submenu-item.expanded .sub-submenu {
  max-height: 500px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
.mobile-menu-overlay.show {
  display: block;
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay.show .mobile-menu-content {
  transform: translateX(0);
}
.mobile-menu-overlay .mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: var(--bg-tertiary);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .mobile-menu-overlay .mobile-menu-content {
    width: 90%;
  }
}
.mobile-menu-overlay .mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-primary);
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}
.mobile-menu-overlay .mobile-menu-header .mobile-menu-title {
  flex: 1;
}
.mobile-menu-overlay .mobile-menu-header .mobile-menu-title h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.mobile-menu-overlay .mobile-menu-header .mobile-menu-title p {
  font-size: 14px;
  color: var(--text-secondary);
}
.mobile-menu-overlay .mobile-menu-header .mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay .mobile-menu-header .mobile-menu-close:hover {
  background-color: var(--accent-hover);
  color: var(--text-primary);
}
.mobile-menu-overlay .mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu-overlay .mobile-menu-body::-webkit-scrollbar {
  display: none;
}

.mobile-top-nav {
  display: none;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-primary);
  background-color: var(--bg-secondary);
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .mobile-top-nav {
    display: flex;
  }
}
.mobile-top-nav .mobile-top-nav-item {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-primary);
  text-align: center;
  border: 1px solid var(--border-primary);
}
.mobile-top-nav .mobile-top-nav-item:hover {
  background-color: var(--accent-hover);
  color: var(--accent-primary);
}
.mobile-top-nav .mobile-top-nav-item.active {
  background-color: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.touch-feedback {
  position: relative;
  overflow: hidden;
}
.touch-feedback::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  pointer-events: none;
}
.touch-feedback.active::before {
  width: 200px;
  height: 200px;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 768px) {
  body::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: swipeHint 3s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
  }
  body.menu-shown::after {
    display: none;
  }
  @keyframes swipeHint {
    0%, 100% {
      opacity: 0;
      transform: translateY(-50%) translateX(0);
    }
    50% {
      opacity: 0.6;
      transform: translateY(-50%) translateX(10px);
    }
  }
}
/**
 * _button.scss - Flowbite 스타일 버튼
 * https://flowbite.com/docs/components/buttons/
 * Modern, accessible button styles with Tailwind CSS color palette
 */
.btn, .header-action-btn, .save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  padding: 0.625rem 1rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn:focus-visible, .header-action-btn:focus-visible, .save-btn:focus-visible, .btn:focus, .header-action-btn:focus, .save-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}
.btn:disabled, .header-action-btn:disabled, .save-btn:disabled, .btn.disabled, .disabled.header-action-btn, .disabled.save-btn {
  pointer-events: none;
  opacity: 0.65;
  cursor: not-allowed;
}
.btn .material-symbols-outlined, .header-action-btn .material-symbols-outlined, .save-btn .material-symbols-outlined,
.btn svg,
.header-action-btn svg,
.save-btn svg {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
  line-height: 1;
  vertical-align: middle;
}
.btn .material-symbols-outlined, .header-action-btn .material-symbols-outlined, .save-btn .material-symbols-outlined {
  font-size: 1.25em;
  line-height: 1;
}

.btn-blue, .btn-info, .btn-search, .btn-save,
.btn-submit,
.btn-confirm, .btn-primary, .save-btn {
  background-color: #3b82f6;
  color: #ffffff;
}
.btn-blue:hover, .btn-info:hover, .btn-search:hover, .btn-save:hover,
.btn-submit:hover,
.btn-confirm:hover, .btn-primary:hover, .save-btn:hover {
  background-color: #2563eb;
}
.btn-blue:focus-visible, .btn-info:focus-visible, .btn-search:focus-visible, .btn-save:focus-visible,
.btn-submit:focus-visible,
.btn-confirm:focus-visible, .btn-primary:focus-visible, .save-btn:focus-visible, .btn-blue:focus, .btn-info:focus, .btn-search:focus, .btn-save:focus,
.btn-submit:focus,
.btn-confirm:focus, .btn-primary:focus, .save-btn:focus {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}

.btn-gray {
  background-color: #6b7280;
  color: #ffffff;
}
.btn-gray:hover {
  background-color: #4b5563;
}
.btn-gray:focus-visible, .btn-gray:focus {
  box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.5);
}

.btn-dark {
  background-color: #1f2937;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #111827;
}
.btn-dark:focus-visible, .btn-dark:focus {
  box-shadow: 0 0 0 4px rgba(55, 65, 81, 0.5);
}

.btn-light {
  background-color: #f9fafb;
  color: #1f2937;
  border-color: #d1d5db;
}
.btn-light:hover {
  background-color: #f3f4f6;
}
.btn-light:focus-visible, .btn-light:focus {
  box-shadow: 0 0 0 4px rgba(229, 231, 235, 0.5);
}

.btn-green, .btn-success {
  background-color: #22c55e;
  color: #ffffff;
}
.btn-green:hover, .btn-success:hover {
  background-color: #16a34a;
}
.btn-green:focus-visible, .btn-success:focus-visible, .btn-green:focus, .btn-success:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.5);
}

.btn-red, .btn-delete,
.btn-remove,
.btn-destructive {
  background-color: #ef4444;
  color: #ffffff;
}
.btn-red:hover, .btn-delete:hover,
.btn-remove:hover,
.btn-destructive:hover {
  background-color: #dc2626;
}
.btn-red:focus-visible, .btn-delete:focus-visible,
.btn-remove:focus-visible,
.btn-destructive:focus-visible, .btn-red:focus, .btn-delete:focus,
.btn-remove:focus,
.btn-destructive:focus {
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.5);
}

.btn-yellow, .btn-warning {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-yellow:hover, .btn-warning:hover {
  background-color: #d97706;
}
.btn-yellow:focus-visible, .btn-warning:focus-visible, .btn-yellow:focus, .btn-warning:focus {
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.5);
}

.btn-purple {
  background-color: #9333ea;
  color: #ffffff;
}
.btn-purple:hover {
  background-color: #7c3aed;
}
.btn-purple:focus-visible, .btn-purple:focus {
  box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.5);
}

.btn-pink {
  background-color: #ec4899;
  color: #ffffff;
}
.btn-pink:hover {
  background-color: #db2777;
}
.btn-pink:focus-visible, .btn-pink:focus {
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.5);
}

.btn-secondary, .btn-cancel,
.btn-list,
.btn-back {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}
.btn-secondary:hover, .btn-cancel:hover,
.btn-list:hover,
.btn-back:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}
.btn-secondary:focus-visible, .btn-cancel:focus-visible,
.btn-list:focus-visible,
.btn-back:focus-visible, .btn-secondary:focus, .btn-cancel:focus,
.btn-list:focus,
.btn-back:focus {
  box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.5);
}

.btn-tertiary {
  background-color: transparent;
  color: #374151;
  border-color: #d1d5db;
}
.btn-tertiary:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}
.btn-tertiary:focus-visible, .btn-tertiary:focus {
  box-shadow: 0 0 0 4px rgba(209, 213, 219, 0.5);
}

.btn-ghost, .btn-reset {
  background-color: transparent;
  border-color: transparent;
  color: var(--text-primary);
  box-shadow: none;
}
.btn-ghost:hover, .btn-reset:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.btn-ghost:focus-visible, .btn-reset:focus-visible, .btn-ghost:focus, .btn-reset:focus {
  box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.3);
}

.btn-outline-blue {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}
.btn-outline-blue:hover {
  background-color: #3b82f6;
  color: #ffffff;
}
.btn-outline-blue:focus-visible, .btn-outline-blue:focus {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}

.btn-outline-gray {
  background-color: transparent;
  color: #6b7280;
  border-color: #6b7280;
}
.btn-outline-gray:hover {
  background-color: #6b7280;
  color: #ffffff;
}
.btn-outline-gray:focus-visible, .btn-outline-gray:focus {
  box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.5);
}

.btn-outline-dark {
  background-color: transparent;
  color: #1f2937;
  border-color: #1f2937;
}
.btn-outline-dark:hover {
  background-color: #1f2937;
  color: #ffffff;
}
.btn-outline-dark:focus-visible, .btn-outline-dark:focus {
  box-shadow: 0 0 0 4px rgba(55, 65, 81, 0.5);
}

.btn-outline-light {
  background-color: transparent;
  color: #f9fafb;
  border-color: #f9fafb;
}
.btn-outline-light:hover {
  background-color: #f9fafb;
  color: #1f2937;
}
.btn-outline-light:focus-visible, .btn-outline-light:focus {
  box-shadow: 0 0 0 4px rgba(229, 231, 235, 0.5);
}

.btn-outline-green {
  background-color: transparent;
  color: #22c55e;
  border-color: #22c55e;
}
.btn-outline-green:hover {
  background-color: #22c55e;
  color: #ffffff;
}
.btn-outline-green:focus-visible, .btn-outline-green:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.5);
}

.btn-outline-red {
  background-color: transparent;
  color: #ef4444;
  border-color: #ef4444;
}
.btn-outline-red:hover {
  background-color: #ef4444;
  color: #ffffff;
}
.btn-outline-red:focus-visible, .btn-outline-red:focus {
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.5);
}

.btn-outline-yellow {
  background-color: transparent;
  color: #f59e0b;
  border-color: #f59e0b;
}
.btn-outline-yellow:hover {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-outline-yellow:focus-visible, .btn-outline-yellow:focus {
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.5);
}

.btn-outline-purple {
  background-color: transparent;
  color: #9333ea;
  border-color: #9333ea;
}
.btn-outline-purple:hover {
  background-color: #9333ea;
  color: #ffffff;
}
.btn-outline-purple:focus-visible, .btn-outline-purple:focus {
  box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.5);
}

.btn-outline-pink {
  background-color: transparent;
  color: #ec4899;
  border-color: #ec4899;
}
.btn-outline-pink:hover {
  background-color: #ec4899;
  color: #ffffff;
}
.btn-outline-pink:focus-visible, .btn-outline-pink:focus {
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.5);
}

.btn-outline, .header-action-btn, .btn-modify,
.btn-edit {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-primary);
}
.btn-outline:hover, .header-action-btn:hover, .btn-modify:hover,
.btn-edit:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.btn-outline:focus-visible, .header-action-btn:focus-visible, .btn-modify:focus-visible,
.btn-edit:focus-visible, .btn-outline:focus, .header-action-btn:focus, .btn-modify:focus,
.btn-edit:focus {
  box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.3);
}

.btn-pill {
  border-radius: 9999px;
}

.btn-xs {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}
.btn-xs .material-symbols-outlined,
.btn-xs svg {
  width: 0.75rem;
  height: 0.75rem;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}
.btn-sm .material-symbols-outlined,
.btn-sm svg {
  width: 0.875rem;
  height: 0.875rem;
}

.btn-md {
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}
.btn-lg .material-symbols-outlined,
.btn-lg svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-xl {
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
}
.btn-xl .material-symbols-outlined,
.btn-xl svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-icon {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.btn-icon .material-symbols-outlined,
.btn-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
}

.btn-icon-sm,
.btn-icon.btn-sm {
  width: 2rem;
  height: 2rem;
}
.btn-icon-sm .material-symbols-outlined,
.btn-icon-sm svg,
.btn-icon.btn-sm .material-symbols-outlined,
.btn-icon.btn-sm svg {
  width: 1rem;
  height: 1rem;
}

.btn-icon-xs,
.btn-icon.btn-xs {
  width: 1.75rem;
  height: 1.75rem;
}
.btn-icon-xs .material-symbols-outlined,
.btn-icon-xs svg,
.btn-icon.btn-xs .material-symbols-outlined,
.btn-icon.btn-xs svg {
  width: 0.875rem;
  height: 0.875rem;
}

.btn-icon-lg,
.btn-icon.btn-lg {
  width: 2.75rem;
  height: 2.75rem;
}
.btn-icon-lg .material-symbols-outlined,
.btn-icon-lg svg,
.btn-icon.btn-lg .material-symbols-outlined,
.btn-icon.btn-lg svg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-loading {
  pointer-events: none;
  position: relative;
}
.btn-loading .btn-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
}
.btn-group .btn, .btn-group .header-action-btn, .btn-group .save-btn {
  border-radius: 0;
  border-right-width: 0;
}
.btn-group .btn:first-child, .btn-group .header-action-btn:first-child, .btn-group .save-btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.btn-group .btn:last-child, .btn-group .header-action-btn:last-child, .btn-group .save-btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-right-width: 1px;
}
.btn-group .btn:focus-visible, .btn-group .header-action-btn:focus-visible, .btn-group .save-btn:focus-visible {
  z-index: 1;
}

.btn-group-inline {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-link {
  background-color: transparent;
  border-color: transparent;
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
  height: auto;
  box-shadow: none;
}
.btn-link:hover {
  color: #2563eb;
  background-color: transparent;
  box-shadow: none;
}
.btn-link:focus-visible, .btn-link:focus {
  box-shadow: none;
}

.btn-danger-text {
  color: #ef4444;
}
.btn-danger-text:hover {
  color: #dc2626;
  background-color: rgba(239, 68, 68, 0.1);
}

.btn-success-text {
  color: #22c55e;
}
.btn-success-text:hover {
  color: #16a34a;
  background-color: rgba(34, 197, 94, 0.1);
}

.btn-warning-text {
  color: #f59e0b;
}
.btn-warning-text:hover {
  color: #d97706;
  background-color: rgba(245, 158, 11, 0.1);
}

.btn-primary-text {
  color: #3b82f6;
}
.btn-primary-text:hover {
  color: #2563eb;
  background-color: rgba(59, 130, 246, 0.1);
}

[data-theme=dark] .btn-secondary, [data-theme=dark] .btn-cancel,
[data-theme=dark] .btn-list,
[data-theme=dark] .btn-back,
.dark .btn-secondary,
.dark .btn-cancel,
.dark .btn-list,
.dark .btn-back {
  background-color: #374151;
  color: #f9fafb;
  border-color: #4b5563;
}
[data-theme=dark] .btn-secondary:hover, [data-theme=dark] .btn-cancel:hover,
[data-theme=dark] .btn-list:hover,
[data-theme=dark] .btn-back:hover,
.dark .btn-secondary:hover,
.dark .btn-cancel:hover,
.dark .btn-list:hover,
.dark .btn-back:hover {
  background-color: #4b5563;
  color: #ffffff;
}
[data-theme=dark] .btn-tertiary,
.dark .btn-tertiary {
  background-color: transparent;
  color: #f9fafb;
  border-color: #4b5563;
}
[data-theme=dark] .btn-tertiary:hover,
.dark .btn-tertiary:hover {
  background-color: #374151;
  color: #ffffff;
}
[data-theme=dark] .btn-ghost, [data-theme=dark] .btn-reset,
.dark .btn-ghost,
.dark .btn-reset {
  color: #f9fafb;
}
[data-theme=dark] .btn-ghost:hover, [data-theme=dark] .btn-reset:hover,
.dark .btn-ghost:hover,
.dark .btn-reset:hover {
  background-color: #374151;
}
[data-theme=dark] .btn-outline, [data-theme=dark] .header-action-btn, [data-theme=dark] .btn-modify,
[data-theme=dark] .btn-edit,
.dark .btn-outline,
.dark .header-action-btn,
.dark .btn-modify,
.dark .btn-edit {
  color: #f9fafb;
  border-color: #4b5563;
}
[data-theme=dark] .btn-outline:hover, [data-theme=dark] .header-action-btn:hover, [data-theme=dark] .btn-modify:hover,
[data-theme=dark] .btn-edit:hover,
.dark .btn-outline:hover,
.dark .header-action-btn:hover,
.dark .btn-modify:hover,
.dark .btn-edit:hover {
  background-color: #374151;
}
[data-theme=dark] .btn-light,
.dark .btn-light {
  background-color: #374151;
  color: #f9fafb;
  border-color: #4b5563;
}
[data-theme=dark] .btn-light:hover,
.dark .btn-light:hover {
  background-color: #4b5563;
}

@media (prefers-color-scheme: dark) {
  .btn-secondary, .btn-cancel,
  .btn-list,
  .btn-back {
    background-color: #374151;
    color: #f9fafb;
    border-color: #4b5563;
  }
  .btn-secondary:hover, .btn-cancel:hover,
  .btn-list:hover,
  .btn-back:hover {
    background-color: #4b5563;
    color: #ffffff;
  }
  .btn-tertiary {
    background-color: transparent;
    color: #f9fafb;
    border-color: #4b5563;
  }
  .btn-tertiary:hover {
    background-color: #374151;
    color: #ffffff;
  }
  .btn-ghost, .btn-reset {
    color: #f9fafb;
  }
  .btn-ghost:hover, .btn-reset:hover {
    background-color: #374151;
  }
  .btn-outline, .header-action-btn, .btn-modify,
  .btn-edit {
    color: #f9fafb;
    border-color: #4b5563;
  }
  .btn-outline:hover, .header-action-btn:hover, .btn-modify:hover,
  .btn-edit:hover {
    background-color: #374151;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.375rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.pagination .page-item .page-link:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.pagination .page-item.active .page-link {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  pointer-events: none;
}
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.tabulator .tabulator-footer {
  background-color: transparent !important;
  border-top: 1px solid var(--border-primary) !important;
  padding: 1.25rem 0 !important;
}
.tabulator .tabulator-footer .tabulator-paginator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-primary);
}
.tabulator .tabulator-footer .tabulator-page {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.375rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
  transition: all 0.2s;
  cursor: pointer;
  opacity: 1 !important;
  margin: 0 !important;
}
.tabulator .tabulator-footer .tabulator-page:hover {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}
.tabulator .tabulator-footer .tabulator-page.active {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #ffffff !important;
  font-weight: 600;
  pointer-events: none;
}
.tabulator .tabulator-footer .tabulator-page:disabled, .tabulator .tabulator-footer .tabulator-page[disabled] {
  opacity: 0.5 !important;
  cursor: not-allowed;
  pointer-events: none;
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

.menu-box,
.menu-box-style {
  width: -webkit-fill-available;
  display: inline-flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0;
  gap: 0.25rem;
  box-shadow: none;
  line-height: 1.1rem;
  cursor: pointer;
}
.menu-box.vertical,
.menu-box-style.vertical {
  flex-direction: column !important;
}
.menu-box.wrap,
.menu-box-style.wrap {
  flex-wrap: wrap;
  row-gap: 0.25rem;
}
.menu-box.menu-gap-tiny,
.menu-box-style.menu-gap-tiny {
  gap: 0.25rem;
}
.menu-box.menu-gap-min,
.menu-box-style.menu-gap-min {
  gap: 0.5rem;
}
.menu-box.menu-gap-mid,
.menu-box-style.menu-gap-mid {
  gap: 0.75rem;
}
.menu-box.menu-gap-big,
.menu-box-style.menu-gap-big {
  gap: 1rem;
}
.menu-box.menu-gap-huge,
.menu-box-style.menu-gap-huge {
  gap: 1.5rem;
}
.menu-box.menu-align-start,
.menu-box-style.menu-align-start {
  align-items: flex-start;
}
.menu-box.menu-align-center,
.menu-box-style.menu-align-center {
  align-items: center;
}
.menu-box.menu-align-end,
.menu-box-style.menu-align-end {
  align-items: flex-end;
}
.menu-box.menu-nowrap,
.menu-box-style.menu-nowrap {
  flex-wrap: nowrap !important;
}
@media (max-width: 1024px) {
  .menu-box.menu-reverse,
  .menu-box-style.menu-reverse {
    flex-direction: row-reverse;
  }
}
.menu-box .item,
.menu-box-style .item {
  position: relative;
  display: flex;
  flex: 1 0 auto;
  flex-wrap: nowrap;
  flex-direction: row;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem 1.5rem;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.menu-box .item:last-child,
.menu-box-style .item:last-child {
  margin-right: 0;
}
.menu-box .item:hover,
.menu-box-style .item:hover {
  background-color: #3b82f6;
  color: #ffffff;
}
.menu-box .item.active,
.menu-box-style .item.active {
  background-color: #1f2937;
  color: #ffffff;
}
.menu-box .item.inline-box,
.menu-box-style .item.inline-box {
  display: inline-flex;
  margin: 0.25rem;
}
.menu-box.line .item,
.menu-box-style.line .item {
  padding: 0.7rem 1rem;
  background-color: transparent;
  border-bottom: 2px solid var(--border-primary);
  border-radius: 0;
}
.menu-box.line .item:hover,
.menu-box-style.line .item:hover {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}
.menu-box.line .item.active,
.menu-box-style.line .item.active {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}
.menu-box.big .item,
.menu-box-style.big .item {
  padding: 1.2rem 2rem;
}
.menu-box.small .item,
.menu-box-style.small .item {
  padding: 0.5rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.menu-box.tiny .item,
.menu-box-style.tiny .item {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: normal;
}
.menu-box.style-primary:not(.line) .item,
.menu-box-style.style-primary:not(.line) .item {
  background-color: var(--bg-tertiary);
}
.menu-box.style-primary:not(.line) .item:hover, .menu-box.style-primary:not(.line) .item.active,
.menu-box-style.style-primary:not(.line) .item:hover,
.menu-box-style.style-primary:not(.line) .item.active {
  background-color: #3b82f6;
  color: #ffffff;
}
.menu-box.style-warning:not(.line) .item,
.menu-box-style.style-warning:not(.line) .item {
  background-color: var(--bg-tertiary);
}
.menu-box.style-warning:not(.line) .item:hover,
.menu-box-style.style-warning:not(.line) .item:hover {
  background-color: #f59e0b;
  color: #ffffff;
}
.menu-box.style-warning:not(.line) .item.active,
.menu-box-style.style-warning:not(.line) .item.active {
  background-color: #d97706;
  color: #ffffff;
}
.menu-box.style-success:not(.line) .item,
.menu-box-style.style-success:not(.line) .item {
  background-color: var(--bg-tertiary);
}
.menu-box.style-success:not(.line) .item:hover,
.menu-box-style.style-success:not(.line) .item:hover {
  background-color: #22c55e;
  color: #ffffff;
}
.menu-box.style-success:not(.line) .item.active,
.menu-box-style.style-success:not(.line) .item.active {
  background-color: #16a34a;
  color: #ffffff;
}

.menu-box-vertical {
  width: 100%;
  line-height: 1.1rem;
}
.menu-box-vertical .item {
  position: relative;
  cursor: pointer;
  display: block;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.menu-box-vertical .item:hover {
  background-color: #3b82f6;
  color: #ffffff;
}
.menu-box-vertical .item.active {
  background-color: #1f2937;
  color: #ffffff;
}
.menu-box-vertical.tiny .item {
  padding: 0.2rem 1rem;
  font-size: 0.75rem;
}
.menu-box-vertical.small .item {
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}
.menu-box-vertical.big .item {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
}
.menu-box-vertical.line .item {
  border-left: 3px solid transparent;
  border-radius: 0;
  background-color: transparent;
}
.menu-box-vertical.line .item:hover {
  background-color: var(--bg-secondary);
  border-color: #3b82f6;
  color: #3b82f6;
}
.menu-box-vertical.line .item.active {
  background-color: var(--bg-secondary);
  border-color: #1f2937;
  color: #1f2937;
}
.menu-box-vertical.divided .item {
  border-bottom: 1px solid var(--border-primary);
}
.menu-box-vertical.divided .item:last-child {
  border-bottom: none;
}

.header-action-btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}
.header-action-btn:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/**
 * _form.scss - Shadcn/ui 스타일 폼 요소
 * Clean, accessible, and consistent form elements
 */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group.form-group-inline {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.form-group.form-group-inline .form-label {
  margin-bottom: 0;
  min-width: 100px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
}
.form-label.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-description {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.form-message {
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
  margin-top: 4px;
}

.form-input {
  display: flex;
  height: 36px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-primary);
  background-color: var(--bg-primary);
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.2s;
}
.form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}
.form-input:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}
.form-input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: var(--bg-secondary);
}
.form-input[type=file] {
  border: 0;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  height: auto;
}
.form-input.error {
  border-color: #ef4444;
}
.form-input.error:focus {
  box-shadow: 0 0 0 1px #ef4444;
}

.form-textarea {
  display: flex;
  min-height: 60px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-primary);
  background-color: var(--bg-primary);
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-primary);
  resize: vertical;
}
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}
.form-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: var(--bg-secondary);
}

.form-select {
  display: inline-flex;
  height: 36px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-primary);
  background-color: var(--bg-primary);
  padding: 6px 32px 6px 12px;
  font-size: 14px;
  color: var(--text-primary);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  vertical-align: middle;
}
.form-select:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}
.form-select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: var(--bg-secondary);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-wrapper .form-checkbox {
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  border: 1px solid var(--text-primary);
  background-color: var(--bg-primary);
  cursor: pointer;
  position: relative;
}
.checkbox-wrapper .form-checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--text-primary);
}
.checkbox-wrapper .form-checkbox:checked {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}
.checkbox-wrapper .form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
.checkbox-wrapper .form-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.checkbox-wrapper .checkbox-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}
.checkbox-wrapper .checkbox-label.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.radio-wrapper .form-radio {
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid var(--text-primary);
  background-color: var(--bg-primary);
  cursor: pointer;
  position: relative;
}
.radio-wrapper .form-radio:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--text-primary);
}
.radio-wrapper .form-radio:checked {
  border-color: var(--text-primary);
}
.radio-wrapper .form-radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-primary);
}
.radio-wrapper .form-radio:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.radio-wrapper .radio-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.radio-group-inline {
  display: inline-flex;
  gap: 20px;
  align-items: center;
}

.form-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.form-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.form-switch input:checked + .switch-slider {
  background-color: var(--text-primary);
}
.form-switch input:checked + .switch-slider::before {
  transform: translateX(20px);
}
.form-switch input:focus-visible + .switch-slider {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--text-primary);
}
.form-switch input:disabled + .switch-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-switch .switch-slider {
  width: 44px;
  height: 24px;
  background-color: var(--border-primary);
  border-radius: 9999px;
  position: relative;
  transition: background-color 0.2s;
  cursor: pointer;
}
.form-switch .switch-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-group {
  display: flex;
  width: 100%;
}
.input-group .form-input:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .form-input:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  font-size: 14px;
  color: var(--text-secondary);
}
.input-group .input-group-text:first-child {
  border-right: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.input-group .input-group-text:last-child {
  border-left: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.editable {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  border-radius: 6px;
}
.editable:hover {
  background-color: var(--bg-secondary);
  border-color: var(--border-primary);
  padding-right: 24px !important;
}
.editable:hover::after {
  content: "\f303";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.5;
}
.editable:focus-within {
  background-color: var(--bg-primary);
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent-primary);
  z-index: 1;
}
.editable:focus-within::after {
  display: none;
}

.option-section {
  padding: 15px;
  background-color: var(--bg-tertiary);
  border-radius: 6px;
  border: 1px solid var(--border-primary);
  margin-bottom: 15px;
}
.option-section h4,
.option-section h5 {
  margin: 0 0 15px 0;
  color: var(--text-primary);
  font-weight: 600;
}
.option-section h5 {
  color: var(--accent-primary);
}

.tab-content {
  display: none;
  padding: 15px 0;
}
.tab-content.active {
  display: block;
}

.switch-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--bg-secondary);
  border-radius: 4px;
}
.switch-wrapper .form-label {
  margin-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: var(--accent-primary, #3b82f6);
}
.switch input:checked + .slider::before {
  transform: translateX(24px);
}
.switch input:focus-visible + .slider {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent-primary);
}
.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-primary, #ccc);
  transition: background-color 0.3s;
  border-radius: 26px;
}
.switch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--bg-primary, white);
  transition: transform 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-primary);
}
.form-actions.align-left {
  justify-content: flex-start;
}
.form-actions.align-between {
  justify-content: space-between;
}
.form-actions.align-center {
  justify-content: center;
}

.category-box {
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}
.category-box h5 {
  margin: 0 0 15px 0;
  color: var(--accent-primary);
  font-weight: 600;
}

.category-table {
  width: 100%;
  border-collapse: collapse;
}
.category-table th {
  width: 120px;
  text-align: right;
  padding: 8px 15px 8px 0;
  color: var(--text-secondary);
  font-weight: 500;
  vertical-align: middle;
}
.category-table td {
  padding: 8px 0;
  vertical-align: middle;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.form-input-sm {
  max-width: 100px;
}

.form-input-md {
  max-width: 300px;
}

.form-input-lg {
  max-width: 500px;
}

.form-color-picker {
  height: 40px;
  width: 60px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.form-radio-hidden {
  display: none;
}

/**
 * table.scss - 테이블, 리스트, 페이지네이션 스타일
 */
.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-primary);
  font-size: 14px;
}
.table thead {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-primary);
}
.table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  position: relative;
}
.table thead th.sortable {
  cursor: pointer;
  user-select: none;
  padding-right: 30px;
}
.table thead th.sortable::after {
  content: "⇅";
  position: absolute;
  right: 12px;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}
.table thead th.sortable:hover::after {
  opacity: 0.7;
}
.table thead th.sortable.sort-asc::after {
  content: "↑";
  opacity: 1;
  color: var(--accent-primary);
}
.table thead th.sortable.sort-desc::after {
  content: "↓";
  opacity: 1;
  color: var(--accent-primary);
}
.table thead th.checkbox-column {
  width: 40px;
  text-align: center;
}
.table thead th.action-column {
  width: 100px;
  text-align: center;
}
.table tbody tr {
  border-bottom: 1px solid var(--border-secondary);
  transition: background-color 0.2s ease;
}
.table tbody tr:hover {
  background-color: var(--bg-secondary);
}
.table tbody tr.selected {
  background-color: var(--accent-hover);
}
.table tbody tr.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.table tbody tr.disabled:hover {
  background-color: transparent;
}
.table tbody tr.success {
  background-color: rgba(40, 167, 69, 0.1);
}
.table tbody tr.warning {
  background-color: rgba(255, 193, 7, 0.1);
}
.table tbody tr.danger {
  background-color: rgba(220, 53, 69, 0.1);
}
.table tbody tr.info {
  background-color: rgba(0, 123, 255, 0.1);
}
.table tbody td {
  padding: 12px 16px;
  color: var(--text-primary);
  vertical-align: middle;
}
.table tbody td.checkbox-cell {
  text-align: center;
  width: 40px;
}
.table tbody td.action-cell {
  text-align: center;
  white-space: nowrap;
}
.table tbody td.action-cell .btn, .table tbody td.action-cell .save-btn, .table tbody td.action-cell .header-action-btn {
  padding: 4px 12px;
  font-size: 12px;
  margin: 0 2px;
}
.table tbody td .status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.table tbody td .status-badge.active {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.table tbody td .status-badge.inactive {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}
.table tbody td .status-badge.pending {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.table tfoot {
  background-color: var(--bg-secondary);
  border-top: 2px solid var(--border-primary);
}
.table tfoot td {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.table.table-bordered {
  border: 1px solid var(--border-primary);
}
.table.table-bordered th,
.table.table-bordered td {
  border: 1px solid var(--border-primary);
}
.table.table-striped tbody tr:nth-child(odd) {
  background-color: var(--bg-secondary);
}
.table.table-hover tbody tr {
  cursor: pointer;
}
.table.table-hover tbody tr:hover {
  background-color: var(--accent-hover);
}
.table.table-compact th,
.table.table-compact td {
  padding: 8px 12px;
}
.table.table-fixed {
  table-layout: fixed;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}
.table-responsive .table {
  min-width: 100%;
  margin-bottom: 0;
}
.table-responsive::-webkit-scrollbar {
  height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: var(--border-primary);
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}
@media (max-width: 768px) {
  .table-responsive::after {
    content: "← 스크롤 →";
    display: block;
    text-align: center;
    padding: 8px;
    color: var(--text-secondary);
    font-size: 12px;
  }
}

.data-table .data-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 768px) {
  .data-table .data-table-header {
    flex-direction: column;
    gap: 12px;
  }
}
.data-table .data-table-header .data-table-search {
  display: flex;
  align-items: center;
  gap: 12px;
}
.data-table .data-table-header .data-table-search input {
  width: 250px;
}
@media (max-width: 768px) {
  .data-table .data-table-header .data-table-search input {
    width: 100%;
  }
}
.data-table .data-table-header .data-table-actions {
  display: flex;
  gap: 8px;
}
.data-table .data-table-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-top: none;
  color: var(--text-secondary);
  font-size: 13px;
}
@media (max-width: 768px) {
  .data-table .data-table-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.data-table .data-table-info .showing-entries span {
  font-weight: 600;
  color: var(--text-primary);
}
.data-table .data-table-info .page-size-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.data-table .data-table-info .page-size-selector select {
  padding: 4px 8px;
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 13px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list .list-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-secondary);
  transition: background-color 0.2s ease;
}
.list .list-item:hover {
  background-color: var(--bg-secondary);
}
.list .list-item:last-child {
  border-bottom: none;
}
.list .list-item .list-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.list .list-item .list-item-header .list-item-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}
.list .list-item .list-item-header .list-item-meta {
  color: var(--text-secondary);
  font-size: 13px;
}
.list .list-item .list-item-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.list .list-item .list-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-secondary);
}
.list .list-item .list-item-footer .list-item-tags {
  display: flex;
  gap: 8px;
}
.list .list-item .list-item-footer .list-item-tags .tag {
  padding: 2px 8px;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: 4px;
  font-size: 12px;
}
.list .list-item .list-item-footer .list-item-actions {
  display: flex;
  gap: 8px;
}
.list.media-list .list-item {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .list.media-list .list-item {
    flex-direction: column;
  }
}
.list.media-list .list-item .media-object {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text-secondary);
}
.list.media-list .list-item .media-body {
  flex: 1;
}
.list.checklist .list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list.checklist .list-item input[type=checkbox] {
  flex-shrink: 0;
}
.list.checklist .list-item .list-item-content {
  flex: 1;
}
.list.checklist .list-item .list-item-content.completed {
  text-decoration: line-through;
  opacity: 0.6;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
.pagination .page-item {
  list-style: none;
}
.pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination .page-item .page-link:hover:not(.disabled) {
  background-color: var(--accent-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}
.pagination .page-item .page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .page-item.active .page-link {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
}
.pagination .page-item.prev .page-link, .pagination .page-item.next .page-link {
  padding: 0 16px;
}
.pagination .page-item.ellipsis .page-link {
  border: none;
  background: none;
  cursor: default;
}
.pagination .page-item.ellipsis .page-link:hover {
  background: none;
}
.pagination.pagination-sm .page-link {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  font-size: 12px;
}
.pagination.pagination-lg .page-link {
  min-width: 44px;
  height: 44px;
  padding: 0 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .pagination .page-item:not(.active):not(.prev):not(.next) {
    display: none;
  }
  .pagination .page-item.ellipsis {
    display: inline-block;
  }
}

.pagination-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px;
}
.pagination-simple .page-info {
  color: var(--text-secondary);
  font-size: 14px;
}
.pagination-simple .page-info strong {
  color: var(--text-primary);
}
.pagination-simple .page-controls {
  display: flex;
  gap: 8px;
}

.table-loading,
.list-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-secondary);
}
.table-loading .spinner,
.list-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-primary);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}

.table-empty,
.list-empty {
  text-align: center;
  padding: 60px;
  color: var(--text-secondary);
}
.table-empty .empty-icon,
.list-empty .empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.table-empty .empty-title,
.list-empty .empty-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.table-empty .empty-description,
.list-empty .empty-description {
  font-size: 14px;
  margin-bottom: 20px;
}

/**
 * grid.scss - Flexbox와 Grid 기반 레이아웃, 카드, 대시보드 배치
 * 원본 interface.css와 완벽 호환
 */
.main-content {
  flex: 1;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  min-height: 0;
  height: 100%;
}
.main-content .main-content-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-primary);
  flex-shrink: 0;
  background-color: var(--bg-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-content .main-content-header .main-content-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-content .main-content-header .main-content-header-left .header-icon {
  font-size: 20px;
}
.main-content .main-content-header .main-content-header-left .breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.main-content .main-content-header .main-content-header-left .breadcrumb-container .breadcrumb-item {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.main-content .main-content-header .main-content-header-left .breadcrumb-container .breadcrumb-item:first-child {
  font-weight: 600;
}
.main-content .main-content-header .main-content-header-left .breadcrumb-container .breadcrumb-item:last-child {
  color: var(--accent-primary);
  font-weight: 600;
}
.main-content .main-content-header .main-content-header-left .breadcrumb-container .breadcrumb-separator {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 4px;
  opacity: 0.5;
}
.main-content .main-content-header .main-content-header-left .main-content-header-info h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  text-align: left;
}
.main-content .main-content-header .main-content-header-left .main-content-header-info p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
}
.main-content .main-content-header .main-content-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-content .main-content-header .main-content-header-actions .header-action-btn {
  background: none;
  border: 1px solid var(--border-primary);
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-content .main-content-header .main-content-header-actions .header-action-btn:hover {
  background-color: var(--accent-hover);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}
@media (max-width: 768px) {
  .main-content .main-content-header {
    padding: 15px 20px;
  }
  .main-content .main-content-header .main-content-header-left .header-icon {
    font-size: 18px;
  }
  .main-content .main-content-header .main-content-header-left .main-content-header-info h2 {
    font-size: 14px;
  }
  .main-content .main-content-header .main-content-header-left .main-content-header-info p {
    font-size: 12px;
  }
}
.main-content .main-content-body {
  flex: 1;
  overflow: auto;
  padding: 20px;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.main-content .main-content-body::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .main-content .main-content-body {
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .main-content .main-content-body {
    padding: 12px 15px;
  }
}

.resizer {
  width: 6px;
  background-color: var(--border-primary);
  cursor: col-resize;
  position: relative;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.resizer:hover {
  background-color: var(--accent-primary);
}
.resizer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 40px;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 40"><circle cx="3" cy="10" r="1" fill="%23666"/><circle cx="3" cy="20" r="1" fill="%23666"/><circle cx="3" cy="30" r="1" fill="%23666"/></svg>') center/contain no-repeat;
  opacity: 0.5;
}
.resizer:hover::before {
  opacity: 1;
}
.resizer.dragging {
  background-color: var(--accent-primary);
}
@media (max-width: 768px) {
  .resizer {
    display: none;
  }
}

.right-content {
  width: var(--right-width, 250px);
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  min-width: 150px;
  max-width: 400px;
  min-height: 0;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.right-content .right-content-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-primary);
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.right-content .right-content-header .right-content-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.right-content .right-content-header .right-content-header-left div h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  text-align: left;
}
.right-content .right-content-header .right-content-header-left div p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
}
.right-content .right-content-header .right-content-close {
  background: none;
  border: 1px solid var(--border-primary);
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-content .right-content-header .right-content-close:hover {
  background-color: var(--accent-hover);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}
.right-content .right-content-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.right-content .right-content-body::-webkit-scrollbar {
  display: none;
}
.right-content .right-content-body .right-content-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px var(--shadow-light);
}
.right-content .right-content-body .right-content-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}
.right-content .right-content-body .right-content-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .right-content {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 100%;
    max-width: 350px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .right-content.show {
    transform: translateX(0);
  }
}
@media (max-width: 576px) {
  .right-content {
    max-width: 100%;
  }
}

.content-area.hide-right {
  grid-template-columns: 1fr 0;
}
.content-area.hide-right .right-content {
  transform: translateX(100%);
  opacity: 0;
}
.content-area.hide-right .resizer {
  display: none;
}

.content-header {
  margin-bottom: 30px;
}
.content-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.content-header p {
  color: var(--text-secondary);
  font-size: 16px;
}
@media (max-width: 768px) {
  .content-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .content-header p {
    font-size: 14px;
  }
}

.content-block {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px var(--shadow-light);
  margin-bottom: 20px;
}
.content-block h4 {
  margin-bottom: 15px;
  color: var(--text-primary);
}
.content-block p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .content-block {
    padding: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .content-block {
    padding: 15px;
  }
}

.test-content {
  width: 1200px;
  height: 200px;
  background: linear-gradient(45deg, var(--bg-secondary) 25%, transparent 25%), linear-gradient(-45deg, var(--bg-secondary) 25%, transparent 25%);
  background-size: 20px 20px;
  border: 2px dashed var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.tall-content {
  height: 300px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container.container-fluid {
  max-width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  box-shadow: 0 2px 4px var(--shadow-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.card:hover {
  box-shadow: 0 4px 12px var(--shadow-medium);
}
.card .card-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-primary);
  background-color: var(--bg-secondary);
  border-radius: 8px 8px 0 0;
}
.card .card-header .card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.card .card-header .card-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.card .card-body {
  padding: 20px;
  flex: 1;
}
.card .card-body p:last-child {
  margin-bottom: 0;
}
.card .card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border-primary);
  background-color: var(--bg-secondary);
  border-radius: 0 0 8px 8px;
}
.card .card-img-top {
  width: 100%;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}
.card.card-overlay {
  position: relative;
  overflow: hidden;
}
.card.card-overlay .card-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.card.card-overlay:hover .card-overlay-content {
  opacity: 1;
}

.dashboard-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.dashboard-grid .widget {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s;
}
.dashboard-grid .widget:hover {
  box-shadow: 0 4px 12px var(--shadow-light);
  transform: translateY(-2px);
}
.dashboard-grid .widget .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.dashboard-grid .widget .widget-header .widget-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-grid .widget .widget-header .widget-icon {
  font-size: 20px;
  color: var(--accent-primary);
}
.dashboard-grid .widget .widget-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.dashboard-grid .widget .widget-change {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.dashboard-grid .widget .widget-change.positive {
  color: #28a745;
}
.dashboard-grid .widget .widget-change.negative {
  color: #dc3545;
}
.dashboard-grid .widget.widget-chart .widget-chart-container {
  height: 200px;
  margin-top: 15px;
}
.dashboard-grid .widget.widget-list .widget-list-items {
  margin-top: 15px;
}
.dashboard-grid .widget.widget-list .widget-list-items .widget-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-secondary);
}
.dashboard-grid .widget.widget-list .widget-list-items .widget-list-item:last-child {
  border-bottom: none;
}
.dashboard-grid .widget-wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .dashboard-grid .widget-wide {
    grid-column: span 1;
  }
}
.dashboard-grid .widget-full {
  grid-column: 1/-1;
}

.d-flex {
  display: flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.gap-1 {
  gap: 8px !important;
}

.gap-2 {
  gap: 16px !important;
}

.gap-3 {
  gap: 24px !important;
}

.gap-4 {
  gap: 32px !important;
}

.gap-5 {
  gap: 40px !important;
}

.m-1 {
  margin: 8px !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.ml-1 {
  margin-left: 8px !important;
}

.mr-1 {
  margin-right: 8px !important;
}

.mx-1 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.p-1 {
  padding: 8px !important;
}

.pt-1 {
  padding-top: 8px !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.pl-1 {
  padding-left: 8px !important;
}

.pr-1 {
  padding-right: 8px !important;
}

.px-1 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.m-2 {
  margin: 16px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.ml-2 {
  margin-left: 16px !important;
}

.mr-2 {
  margin-right: 16px !important;
}

.mx-2 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.p-2 {
  padding: 16px !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.pl-2 {
  padding-left: 16px !important;
}

.pr-2 {
  padding-right: 16px !important;
}

.px-2 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.m-3 {
  margin: 24px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.ml-3 {
  margin-left: 24px !important;
}

.mr-3 {
  margin-right: 24px !important;
}

.mx-3 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-3 {
  padding: 24px !important;
}

.pt-3 {
  padding-top: 24px !important;
}

.pb-3 {
  padding-bottom: 24px !important;
}

.pl-3 {
  padding-left: 24px !important;
}

.pr-3 {
  padding-right: 24px !important;
}

.px-3 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.m-4 {
  margin: 32px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.ml-4 {
  margin-left: 32px !important;
}

.mr-4 {
  margin-right: 32px !important;
}

.mx-4 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.p-4 {
  padding: 32px !important;
}

.pt-4 {
  padding-top: 32px !important;
}

.pb-4 {
  padding-bottom: 32px !important;
}

.pl-4 {
  padding-left: 32px !important;
}

.pr-4 {
  padding-right: 32px !important;
}

.px-4 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.m-5 {
  margin: 40px !important;
}

.mt-5 {
  margin-top: 40px !important;
}

.mb-5 {
  margin-bottom: 40px !important;
}

.ml-5 {
  margin-left: 40px !important;
}

.mr-5 {
  margin-right: 40px !important;
}

.mx-5 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.p-5 {
  padding: 40px !important;
}

.pt-5 {
  padding-top: 40px !important;
}

.pb-5 {
  padding-bottom: 40px !important;
}

.pl-5 {
  padding-left: 40px !important;
}

.pr-5 {
  padding-right: 40px !important;
}

.px-5 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/**
 * modal.scss - 모달, 다이얼로그, 팝오버, 툴팁, 라이트박스 등 오버레이 컴포넌트
 * 원본 interface.css와 완벽 호환
 */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}
.modal-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.modal-overlay.show .modal,
.modal-overlay.show .dialog {
  transform: scale(1) translateY(0);
}
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
  }
}

.modal {
  background-color: var(--bg-primary);
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow-medium);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-primary);
}
.modal.modal-small {
  max-width: 400px;
}
.modal.modal-medium {
  max-width: 600px;
}
.modal.modal-large {
  max-width: 800px;
}
.modal.modal-xlarge {
  max-width: 1000px;
}
.modal .modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-secondary);
}
.modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.modal .modal-header .modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-header .modal-close:hover {
  background-color: var(--accent-hover);
  color: var(--text-primary);
}
.modal .modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}
.modal .modal-body::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.modal .modal-body::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.1);
  border-radius: 1px;
}
.modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.4);
  border-radius: 1px;
}
.modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.6);
}
.modal .modal-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.4) rgba(128, 128, 128, 0.1);
}
.modal .modal-body *::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.modal .modal-body *::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.1);
  border-radius: 1px;
}
.modal .modal-body *::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.4);
  border-radius: 1px;
}
.modal .modal-body *::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.6);
}
.modal .modal-body * {
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.4) rgba(128, 128, 128, 0.1);
}
.modal .modal-body h4 {
  color: var(--text-primary);
  margin-bottom: 16px;
  font-size: 16px;
}
.modal .modal-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal .modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-primary);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background-color: var(--bg-secondary);
}
.modal .modal-footer .btn, .modal .modal-footer .save-btn, .modal .modal-footer .header-action-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  min-width: 80px;
}
.modal .modal-footer .btn-primary, .modal .modal-footer .save-btn {
  background-color: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}
.modal .modal-footer .btn-primary:hover, .modal .modal-footer .save-btn:hover {
  background-color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}
.modal .modal-footer .btn-secondary, .modal .modal-footer .btn-cancel,
.modal .modal-footer .btn-list,
.modal .modal-footer .btn-back {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-primary);
}
.modal .modal-footer .btn-secondary:hover, .modal .modal-footer .btn-cancel:hover,
.modal .modal-footer .btn-list:hover,
.modal .modal-footer .btn-back:hover {
  background-color: var(--accent-hover);
}
@media (max-width: 768px) {
  .modal {
    max-width: 100%;
    margin: 0;
  }
  .modal .modal-header,
  .modal .modal-body,
  .modal .modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .modal .modal-body {
    max-height: 70vh;
  }
  .modal .modal-footer {
    flex-direction: column-reverse;
  }
  .modal .modal-footer .btn, .modal .modal-footer .save-btn, .modal .modal-footer .header-action-btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .modal .modal-title {
    font-size: 16px;
  }
  .modal .modal-close {
    font-size: 20px;
    width: 28px;
    height: 28px;
  }
}

.dialog {
  background-color: var(--bg-primary);
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow-medium);
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border-primary);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}
.dialog .dialog-header {
  padding: 20px 24px 16px;
  text-align: center;
}
.dialog .dialog-header .dialog-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}
.dialog .dialog-header .dialog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}
.dialog .dialog-header .dialog-message {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.dialog .dialog-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.dialog .dialog-footer .btn, .dialog .dialog-footer .save-btn, .dialog .dialog-footer .header-action-btn {
  flex: 1;
  max-width: 120px;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.dialog .dialog-footer .btn-primary, .dialog .dialog-footer .save-btn {
  background-color: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}
.dialog .dialog-footer .btn-primary:hover, .dialog .dialog-footer .save-btn:hover {
  background-color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}
.dialog .dialog-footer .btn-secondary, .dialog .dialog-footer .btn-cancel,
.dialog .dialog-footer .btn-list,
.dialog .dialog-footer .btn-back {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-primary);
}
.dialog .dialog-footer .btn-secondary:hover, .dialog .dialog-footer .btn-cancel:hover,
.dialog .dialog-footer .btn-list:hover,
.dialog .dialog-footer .btn-back:hover {
  background-color: var(--accent-hover);
}
@media (max-width: 768px) {
  .dialog {
    max-width: 320px;
    margin: 0 10px;
  }
  .dialog .dialog-footer {
    flex-direction: column;
  }
  .dialog .dialog-footer .btn, .dialog .dialog-footer .save-btn, .dialog .dialog-footer .header-action-btn {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .dialog .dialog-icon {
    font-size: 40px;
  }
  .dialog .dialog-title {
    font-size: 16px;
  }
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-form h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.modal-form h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.modal-form p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal-form ul {
  margin: 10px 0;
  padding-left: 20px;
}
.modal-form ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.modal-form kbd {
  background-color: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 13px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 14px;
}

.form-input {
  padding: 12px;
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.form-input::placeholder {
  color: var(--text-secondary);
}
.form-input[readonly] {
  background-color: var(--bg-secondary);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
  padding: 12px;
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.popover {
  position: absolute;
  z-index: 1060;
  display: none;
  max-width: 280px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-light);
}
.popover.show {
  display: block;
}
.popover .popover-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-secondary);
  background-color: var(--bg-secondary);
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.popover .popover-body {
  padding: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: none;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 12px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  max-width: 200px;
}
.tooltip.show {
  display: block;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.dropdown .dropdown-toggle::after {
  content: "▼";
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.2s;
}
.dropdown .dropdown-toggle.active::after {
  transform: rotate(180deg);
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 180px;
  margin-top: 4px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  box-shadow: 0 4px 12px var(--shadow-light);
  padding: 8px 0;
}
.dropdown .dropdown-menu.show {
  display: block;
}
.dropdown .dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--accent-hover);
}
.dropdown .dropdown-menu .dropdown-item.active {
  background-color: var(--accent-primary);
  color: white;
}
.dropdown .dropdown-menu .dropdown-item.disabled {
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.5;
}
.dropdown .dropdown-menu .dropdown-item.disabled:hover {
  background-color: transparent;
}
.dropdown .dropdown-menu .dropdown-divider {
  height: 0;
  margin: 8px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-secondary);
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-primary);
}
.modal-tabs .tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
  bottom: -2px;
}
.modal-tabs .tab-btn:hover {
  color: var(--text-primary);
}
.modal-tabs .tab-btn.active {
  color: var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  font-weight: 600;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/**
 * notification.scss - 알림, 토스트, 배지, 스낵바, 얼럿 등 상태 메시지
 */
.snackbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  min-width: 300px;
  max-width: 568px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #323232;
  color: white;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.snackbar.show {
  opacity: 1;
  visibility: visible;
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snackbar .snackbar-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}
.snackbar .snackbar-action {
  margin-left: 20px;
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.snackbar .snackbar-action:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.snackbar.snackbar-top {
  top: 20px;
  bottom: auto;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .snackbar {
    left: 12px;
    right: 12px;
    transform: none;
    min-width: auto;
    max-width: none;
  }
}

.alert {
  position: relative;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.alert .alert-icon {
  display: inline-flex;
  margin-right: 12px;
  font-size: 18px;
  vertical-align: middle;
}
.alert .alert-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.alert .alert-message {
  font-size: 14px;
  line-height: 1.5;
}
.alert .alert-message p:last-child {
  margin-bottom: 0;
}
.alert .alert-link {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.alert .alert-link:hover {
  text-decoration: none;
}
.alert .alert-close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.alert .alert-close:hover {
  opacity: 1;
}
.alert.alert-primary {
  background-color: rgba(0, 123, 255, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
  color: #004085;
}
.alert.alert-primary .alert-icon {
  color: #004085;
}
.alert.alert-primary .alert-link {
  color: #002752;
}
.alert.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.2);
  color: #155724;
}
.alert.alert-success .alert-icon {
  color: #155724;
}
.alert.alert-success .alert-link {
  color: #0b2e13;
}
.alert.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.2);
  color: #856404;
}
.alert.alert-warning .alert-icon {
  color: #856404;
}
.alert.alert-warning .alert-link {
  color: #533f03;
}
.alert.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
  color: #721c24;
}
.alert.alert-danger .alert-icon {
  color: #721c24;
}
.alert.alert-danger .alert-link {
  color: #491217;
}
.alert.alert-info {
  background-color: rgba(23, 162, 184, 0.1);
  border-color: rgba(23, 162, 184, 0.2);
  color: #0c5460;
}
.alert.alert-info .alert-icon {
  color: #0c5460;
}
.alert.alert-info .alert-link {
  color: #062c33;
}
.alert.alert-dismissible {
  padding-right: 45px;
}
.alert.alert-outlined {
  background-color: transparent;
  border-width: 2px;
}
.alert.alert-filled {
  color: white;
}
.alert.alert-filled.alert-primary {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
}
.alert.alert-filled.alert-success {
  background-color: #28a745;
  border-color: #28a745;
}
.alert.alert-filled.alert-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}
.alert.alert-filled.alert-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}
.alert.alert-filled.alert-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.alert.alert-filled .alert-link {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.badge, .badge-mini, .badge-notice, .badge-hot, .badge-new {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.badge.badge-sm, .badge-mini, .badge-notice, .badge-hot, .badge-new {
  padding: 1.3333333333px 5.3333333333px;
  font-size: 10px;
}
.badge.badge-lg, .badge-lg.badge-mini, .badge-lg.badge-notice, .badge-lg.badge-hot, .badge-lg.badge-new {
  padding: 6.015037594px 12px;
  font-size: 13px;
}
.badge.badge-pill, .badge-pill.badge-mini, .badge-notice, .badge-hot, .badge-new {
  border-radius: 100px;
  padding-left: 8px;
  padding-right: 8px;
}
.badge.badge-circle, .badge-circle.badge-mini, .badge-circle.badge-notice, .badge-circle.badge-hot, .badge-circle.badge-new {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge.badge-primary, .badge-primary.badge-mini, .badge-primary.badge-notice, .badge-primary.badge-hot, .badge-primary.badge-new {
  background-color: var(--accent-primary);
  color: white;
}
.badge.badge-secondary, .badge-secondary.badge-mini, .badge-secondary.badge-notice, .badge-secondary.badge-hot, .badge-secondary.badge-new {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}
.badge.badge-success, .badge-success.badge-mini, .badge-success.badge-notice, .badge-success.badge-hot, .badge-success.badge-new {
  background-color: #28a745;
  color: white;
}
.badge.badge-danger, .badge-danger.badge-mini, .badge-danger.badge-notice, .badge-danger.badge-hot, .badge-danger.badge-new {
  background-color: #dc3545;
  color: white;
}
.badge.badge-warning, .badge-warning.badge-mini, .badge-warning.badge-notice, .badge-warning.badge-hot, .badge-warning.badge-new {
  background-color: #ffc107;
  color: #212529;
}
.badge.badge-info, .badge-info.badge-mini, .badge-info.badge-notice, .badge-info.badge-hot, .badge-info.badge-new {
  background-color: #17a2b8;
  color: white;
}
.badge.badge-light, .badge-light.badge-mini, .badge-light.badge-notice, .badge-light.badge-hot, .badge-light.badge-new {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.badge.badge-dark, .badge-dark.badge-mini, .badge-dark.badge-notice, .badge-dark.badge-hot, .badge-dark.badge-new {
  background-color: #343a40;
  color: white;
}
.badge.badge-outline, .badge-outline.badge-mini, .badge-outline.badge-notice, .badge-outline.badge-hot, .badge-outline.badge-new {
  background-color: transparent;
  border: 1px solid currentColor;
}
.badge.badge-outline.badge-primary, .badge-outline.badge-primary.badge-mini, .badge-outline.badge-primary.badge-notice, .badge-outline.badge-primary.badge-hot, .badge-outline.badge-primary.badge-new {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}
.badge.badge-outline.badge-success, .badge-outline.badge-success.badge-mini, .badge-outline.badge-success.badge-notice, .badge-outline.badge-success.badge-hot, .badge-outline.badge-success.badge-new {
  color: #28a745;
  border-color: #28a745;
}
.badge.badge-outline.badge-danger, .badge-outline.badge-danger.badge-mini, .badge-outline.badge-danger.badge-notice, .badge-outline.badge-danger.badge-hot, .badge-outline.badge-danger.badge-new {
  color: #dc3545;
  border-color: #dc3545;
}
.badge.badge-outline.badge-warning, .badge-outline.badge-warning.badge-mini, .badge-outline.badge-warning.badge-notice, .badge-outline.badge-warning.badge-hot, .badge-outline.badge-warning.badge-new {
  color: #ffc107;
  border-color: #ffc107;
}
.badge.badge-pulse, .badge-pulse.badge-mini, .badge-pulse.badge-notice, .badge-pulse.badge-hot, .badge-pulse.badge-new {
  position: relative;
}
.badge.badge-pulse::before, .badge-pulse.badge-mini::before, .badge-pulse.badge-notice::before, .badge-pulse.badge-hot::before, .badge-pulse.badge-new::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  opacity: 0.6;
  animation: pulse 1.5s ease-out infinite;
}

.notification-dot {
  position: relative;
  display: inline-block;
}
.notification-dot::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #dc3545;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}
.notification-dot.dot-sm::after {
  width: 6px;
  height: 6px;
  border-width: 1px;
}
.notification-dot.dot-lg::after {
  width: 10px;
  height: 10px;
}
.notification-dot.dot-primary::after {
  background-color: var(--accent-primary);
}
.notification-dot.dot-success::after {
  background-color: #28a745;
}
.notification-dot.dot-warning::after {
  background-color: #ffc107;
}
.notification-dot.dot-pulse::after {
  animation: pulse 1.5s ease-out infinite;
}
.notification-dot.notification-count::after {
  content: attr(data-count);
  width: auto;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.progress-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: 4px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.progress-notification.show {
  opacity: 1;
}
.progress-notification .progress-bar {
  height: 100%;
  background-color: var(--accent-primary);
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}
.progress-notification .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s linear infinite;
}
.progress-notification.progress-success .progress-bar {
  background-color: #28a745;
}
.progress-notification.progress-warning .progress-bar {
  background-color: #ffc107;
}
.progress-notification.progress-danger .progress-bar {
  background-color: #dc3545;
}

.inline-notification {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: var(--bg-secondary);
  border-radius: 4px;
  font-size: 13px;
  gap: 8px;
}
.inline-notification .inline-notification-icon {
  font-size: 14px;
}
.inline-notification.inline-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #155724;
}
.inline-notification.inline-success .inline-notification-icon {
  color: #28a745;
}
.inline-notification.inline-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #856404;
}
.inline-notification.inline-warning .inline-notification-icon {
  color: #ffc107;
}
.inline-notification.inline-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #721c24;
}
.inline-notification.inline-error .inline-notification-icon {
  color: #dc3545;
}
.inline-notification.inline-info {
  background-color: rgba(23, 162, 184, 0.1);
  color: #0c5460;
}
.inline-notification.inline-info .inline-notification-icon {
  color: #17a2b8;
}

.floating-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  padding: 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  box-shadow: 0 6px 20px var(--shadow-medium);
  z-index: 1990;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.3s ease;
}
.floating-notification.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.floating-notification .floating-notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.floating-notification .floating-notification-header .floating-notification-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.floating-notification .floating-notification-header .floating-notification-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.floating-notification .floating-notification-header .floating-notification-close:hover {
  opacity: 1;
}
.floating-notification .floating-notification-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.floating-notification .floating-notification-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.floating-notification .floating-notification-actions .btn, .floating-notification .floating-notification-actions .save-btn, .floating-notification .floating-notification-actions .header-action-btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .floating-notification {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/**
 * toast.scss - 토스트 알림 스타일
 */
/**
 * _variables.scss - 전역 변수 정의
 */
/**
 * _mixins.scss - 전역 믹스인 정의
 */
/**
 * _variables.scss - 전역 변수 정의
 */
.toast-container {
  position: fixed;
  z-index: 2000;
  pointer-events: none;
  padding: 20px;
}
.toast-container.toast-top-right {
  top: 0;
  right: 0;
}
.toast-container.toast-top-left {
  top: 0;
  left: 0;
}
.toast-container.toast-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.toast-container.toast-bottom-right {
  bottom: 0;
  right: 0;
}
.toast-container.toast-bottom-left {
  bottom: 0;
  left: 0;
}
.toast-container.toast-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .toast-container {
    padding: 12px;
  }
  .toast-container.toast-top-right, .toast-container.toast-top-left {
    top: 60px;
  }
}

.toast {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-width: 280px;
  max-width: 380px;
  margin-bottom: 12px;
  padding: 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-medium);
  pointer-events: auto;
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease;
}
.toast:hover {
  transform: translateX(-4px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}
.toast .toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.toast .toast-body {
  flex: 1;
  margin-right: 12px;
}
.toast .toast-body .toast-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 14px;
}
.toast .toast-body .toast-message {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}
.toast .toast-body .toast-time {
  color: var(--text-secondary);
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.7;
}
.toast .toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.toast .toast-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.toast .toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-primary);
  border-radius: 0 0 8px 8px;
  animation: progress 3s linear;
}
.toast.toast-success {
  border-left: 4px solid #28a745;
}
.toast.toast-success .toast-icon {
  color: #28a745;
}
.toast.toast-success .toast-progress {
  background-color: #28a745;
}
.toast.toast-error {
  border-left: 4px solid #dc3545;
}
.toast.toast-error .toast-icon {
  color: #dc3545;
}
.toast.toast-error .toast-progress {
  background-color: #dc3545;
}
.toast.toast-warning {
  border-left: 4px solid #ffc107;
}
.toast.toast-warning .toast-icon {
  color: #ffc107;
}
.toast.toast-warning .toast-progress {
  background-color: #ffc107;
}
.toast.toast-info {
  border-left: 4px solid var(--accent-primary);
}
.toast.toast-info .toast-icon {
  color: var(--accent-primary);
}
.toast.toast-action .toast-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.toast.toast-action .toast-actions .btn, .toast.toast-action .toast-actions .save-btn, .toast.toast-action .toast-actions .header-action-btn {
  padding: 4px 12px;
  font-size: 12px;
  min-width: auto;
}
.toast.toast-hide {
  animation: slideOutRight 0.3s forwards;
}
@media (max-width: 768px) {
  .toast {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
/**
 * _mobile-menu.scss - 모바일 메뉴 스타일 (PC 메뉴 클래스 재사용)
 */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
  z-index: 1000;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }
}
.mobile-header .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-header .mobile-menu-toggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile-header .mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s;
}
.mobile-header .mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-header .mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-header .mobile-header-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.mobile-header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-header .header-icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(3px);
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: var(--bg-tertiary);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  flex-direction: column;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-sidebar.active {
  display: flex;
  transform: translateX(0);
}
.mobile-sidebar .mobile-sidebar-header {
  padding: 20px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
}
.mobile-sidebar .mobile-sidebar-header .sidebar-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.mobile-sidebar .mobile-sidebar-header .sidebar-user .user-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--accent-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.mobile-sidebar .mobile-sidebar-header .sidebar-user .user-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}
.mobile-sidebar .mobile-sidebar-header .sidebar-user .user-info p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 2px 0 0;
}
.mobile-sidebar .mobile-sidebar-header .menu-selector-container {
  position: relative;
}
.mobile-sidebar .mobile-sidebar-header .menu-selector {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-sidebar .mobile-sidebar-header .menu-selector:active {
  background-color: var(--bg-secondary);
}
.mobile-sidebar .mobile-sidebar-header .menu-selector .menu-selector-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-primary);
}
.mobile-sidebar .mobile-sidebar-header .menu-selector .menu-selector-arrow {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.2s;
}
.mobile-sidebar .mobile-sidebar-header .menu-selector.active .menu-selector-arrow {
  transform: rotate(180deg);
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown.active {
  display: block;
  animation: slideDown 0.2s ease;
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown .dropdown-item {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-secondary);
  color: var(--text-primary);
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown .dropdown-item:last-child {
  border-bottom: none;
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown .dropdown-item:active {
  background-color: var(--bg-secondary);
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown .dropdown-item.selected {
  background-color: var(--accent-light);
  color: var(--accent-primary);
  font-weight: 500;
}
.mobile-sidebar .mobile-sidebar-header .menu-dropdown .dropdown-item .dropdown-item-check {
  margin-left: auto;
  color: var(--accent-primary);
}
.mobile-sidebar .mobile-sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}
.mobile-sidebar .mobile-sidebar-content .mobile-menu-section {
  display: none;
}
.mobile-sidebar .mobile-sidebar-content .mobile-menu-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.mobile-sidebar .mobile-sidebar-content .menu-item .menu-item-header {
  padding: 15px 20px;
  font-size: 15px;
}
.mobile-sidebar .mobile-sidebar-content .menu-item .menu-item-header .menu-expand-icon {
  font-size: 14px;
  opacity: 0.7;
}
.mobile-sidebar .mobile-sidebar-content .submenu {
  background-color: rgba(0, 0, 0, 0.03);
}
.mobile-sidebar .mobile-sidebar-content .submenu .submenu-item,
.mobile-sidebar .mobile-sidebar-content .submenu a.submenu-item {
  padding: 12px 20px 12px 30px;
  font-size: 14px;
}
.mobile-sidebar .mobile-sidebar-content .sub-submenu {
  background-color: rgba(0, 0, 0, 0.05);
}
.mobile-sidebar .mobile-sidebar-content .sub-submenu .sub-submenu-item,
.mobile-sidebar .mobile-sidebar-content .sub-submenu a.sub-submenu-item {
  padding: 12px 20px 12px 40px;
  font-size: 13px;
}
.mobile-sidebar .mobile-sidebar-content .sub-sub-submenu {
  background-color: rgba(0, 0, 0, 0.07);
}
.mobile-sidebar .mobile-sidebar-content .sub-sub-submenu .sub-sub-submenu-item,
.mobile-sidebar .mobile-sidebar-content .sub-sub-submenu a.sub-sub-submenu-item {
  padding: 12px 20px 12px 50px;
  font-size: 13px;
}
.mobile-sidebar .mobile-sidebar-content a.active {
  background-color: var(--accent-primary) !important;
  color: white !important;
}
.mobile-sidebar .mobile-sidebar-content .menu-folder-icon {
  margin-right: 5px;
  font-size: 14px;
  color: var(--text-secondary);
}
.mobile-sidebar .mobile-sidebar-content .mobile-empty-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}
.mobile-sidebar .mobile-sidebar-content .mobile-empty-menu .mobile-empty-menu-icon {
  font-size: 40px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.mobile-sidebar .mobile-sidebar-content .mobile-empty-menu .mobile-empty-menu-text {
  font-size: 14px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * _loading-effect.scss - 공용 로딩 이펙트 스타일
 * 모든 페이지에서 사용 가능한 로딩 관련 스타일
 */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.loading-spinner i {
  margin-right: 12px;
  font-size: 1.3rem;
  color: var(--accent-primary);
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-overlay .loading-content {
  background: var(--bg-primary);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.loading-overlay .loading-content i {
  font-size: 2rem;
  color: var(--accent-primary);
}
.loading-overlay .loading-content span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.loading-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.loading-inline i {
  margin-right: 8px;
  color: var(--accent-primary);
}

.table-loading,
.list-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--text-secondary);
}
.table-loading .loading-icon,
.list-loading .loading-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent-primary);
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}
.skeleton-text.short {
  width: 40%;
}
.skeleton-text.medium {
  width: 70%;
}
.skeleton-text.long {
  width: 100%;
}

.skeleton-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-rect {
  width: 100%;
  height: 100px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  color: var(--text-secondary);
}
.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state p {
  margin: 0;
  font-size: 0.95rem;
}

/**
 * _tags.scss - 공용 유틸리티 클래스
 * 텍스트, 크기, 여백, 정렬, 디스플레이 등 범용 스타일
 */
.text-del, .text-line-through {
  text-decoration: line-through !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-none {
  text-decoration: none !important;
}
.text-truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.text-shadow {
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.5);
}
.text-shadow-light {
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.15);
}
.text-shadow-medium {
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.35);
}
.text-shadow-dark {
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.7);
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-primary {
  color: var(--text-primary) !important;
}
.text-secondary {
  color: var(--text-secondary) !important;
}
.text-accent {
  color: var(--accent-primary) !important;
}
.text-success {
  color: #28a745 !important;
}
.text-danger {
  color: #dc3545 !important;
}
.text-warning {
  color: #ffc107 !important;
}
.text-info {
  color: #17a2b8 !important;
}
.text-muted {
  color: var(--text-secondary) !important;
  opacity: 0.7;
}

.font-thin {
  font-weight: 100 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-black {
  font-weight: 900 !important;
}
.font-xs {
  font-size: 0.7rem !important;
}
.font-sm {
  font-size: 0.85rem !important;
}
.font-md {
  font-size: 1rem !important;
}
.font-lg {
  font-size: 1.25rem !important;
}
.font-xl {
  font-size: 1.5rem !important;
}
.font-2xl {
  font-size: 2rem !important;
}
.font-italic {
  font-style: italic !important;
}
.font-mono {
  font-family: monospace !important;
}

.w-auto {
  width: auto !important;
}
.w-full {
  width: 100% !important;
}
.w-half {
  width: 50% !important;
}
.w-25 {
  width: 25% !important;
}
.w-75 {
  width: 75% !important;
}
.w-xs {
  width: 3rem !important;
}
.w-sm {
  width: 6rem !important;
}
.w-md {
  width: 10rem !important;
}
.w-lg {
  width: 15rem !important;
}
.w-xl {
  width: 20rem !important;
}
.w-max {
  width: 100% !important;
  width: -webkit-fill-available !important;
  width: fill-available !important;
}

.h-auto {
  height: auto !important;
}
.h-full {
  height: 100% !important;
}
.h-screen {
  height: 100vh !important;
}
.h-xs {
  height: 3rem !important;
}
.h-sm {
  height: 6rem !important;
}
.h-md {
  height: 10rem !important;
}
.h-lg {
  height: 15rem !important;
}
.h-xl {
  height: 20rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.m-3 {
  margin: 12px !important;
}

.m-4 {
  margin: 16px !important;
}

.m-5 {
  margin: 20px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mr-3 {
  margin-right: 12px !important;
}

.mr-4 {
  margin-right: 16px !important;
}

.mr-5 {
  margin-right: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.ml-3 {
  margin-left: 12px !important;
}

.ml-4 {
  margin-left: 16px !important;
}

.ml-5 {
  margin-left: 20px !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.p-3 {
  padding: 12px !important;
}

.p-4 {
  padding: 16px !important;
}

.p-5 {
  padding: 20px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 12px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pt-5 {
  padding-top: 20px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pr-3 {
  padding-right: 12px !important;
}

.pr-4 {
  padding-right: 16px !important;
}

.pr-5 {
  padding-right: 20px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-3 {
  padding-bottom: 12px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.pb-5 {
  padding-bottom: 20px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.pl-3 {
  padding-left: 12px !important;
}

.pl-4 {
  padding-left: 16px !important;
}

.pl-5 {
  padding-left: 20px !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.px-3 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-grid {
  display: grid !important;
}
.d-hidden {
  visibility: hidden !important;
}
.d-visible {
  visibility: visible !important;
}

.v-top {
  vertical-align: top !important;
}
.v-middle {
  vertical-align: middle !important;
}
.v-bottom {
  vertical-align: bottom !important;
}
.v-baseline {
  vertical-align: baseline !important;
}

.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.pos-static {
  position: static !important;
}
.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute !important;
}
.pos-fixed {
  position: fixed !important;
}
.pos-sticky {
  position: sticky !important;
}

.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}

.cursor-pointer {
  cursor: pointer !important;
}
.cursor-default {
  cursor: default !important;
}
.cursor-move {
  cursor: move !important;
}
.cursor-not-allowed {
  cursor: not-allowed !important;
}
.cursor-grab {
  cursor: grab !important;
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}
.bg-secondary {
  background-color: var(--bg-secondary) !important;
}
.bg-tertiary {
  background-color: var(--bg-tertiary) !important;
}
.bg-accent {
  background-color: var(--accent-primary) !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-success {
  background-color: #28a745 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}

.border-0 {
  border: 0 !important;
}
.border-1 {
  border: 1px solid var(--border-primary) !important;
}
.border-2 {
  border: 2px solid var(--border-primary) !important;
}
.border-top {
  border-top: 1px solid var(--border-primary) !important;
}
.border-bottom {
  border-bottom: 1px solid var(--border-primary) !important;
}
.border-left {
  border-left: 1px solid var(--border-primary) !important;
}
.border-right {
  border-right: 1px solid var(--border-primary) !important;
}
.border-rounded {
  border-radius: 6px !important;
}
.border-circle {
  border-radius: 50% !important;
}
.border-pill {
  border-radius: 999px !important;
}

.shadow-none {
  box-shadow: none !important;
}
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}
.shadow-md {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12) !important;
}
.shadow-lg {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}
.shadow-xl {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}

.z-0 {
  z-index: 0 !important;
}
.z-10 {
  z-index: 10 !important;
}
.z-20 {
  z-index: 20 !important;
}
.z-50 {
  z-index: 50 !important;
}
.z-100 {
  z-index: 100 !important;
}
.z-auto {
  z-index: auto !important;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select-all {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 576px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}
/**
 * _mypage.scss - 마이페이지 전용 스타일
 */
.mypage-form-wrapper {
  width: 100%;
  padding: 16px;
  background: var(--bg-primary);
  min-height: 500px;
}

.form-section {
  margin-bottom: 20px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-primary);
}

.form-row {
  margin-bottom: 16px;
}
.form-row.mb-0, .form-row:last-child {
  margin-bottom: 0;
}

.form-help-text {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}
.form-help-text.mt-0 {
  margin-top: 0;
}

.password-section {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
}

.password-section-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.password-section-title i {
  color: var(--accent-primary);
}

.badge-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(var(--accent-primary-rgb, 52, 152, 219), 0.1);
  color: var(--accent-primary);
}

body.login-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.login-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/admin/assets/img/bg-login.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.login-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

.login-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 50px 40px;
  animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-logo {
  text-align: center;
  margin-bottom: 35px;
}
.login-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}
.login-logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: -0.5px;
}
.login-logo p {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: #7f8c8d;
}

.login-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s;
}
.form-group label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.form-group .input-wrapper {
  position: relative;
}
.form-group .input-wrapper input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  box-sizing: border-box;
}
.form-group .input-wrapper input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
.form-group .input-wrapper input.error {
  border-color: #e74c3c;
}
.form-group .input-wrapper .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 18px;
  pointer-events: none;
}
.form-group .error-message {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #e74c3c;
  animation: shake 0.3s;
}
.form-group .error-message.active {
  display: block;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.form-options .remember-me {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.form-options .remember-me input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.form-options .remember-me label {
  font-size: 14px;
  color: #7f8c8d;
  cursor: pointer;
  margin: 0;
}
.form-options .forgot-password {
  font-size: 14px;
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s;
}
.form-options .forgot-password:hover {
  color: #2980b9;
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-login::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}
.btn-login:hover::before {
  width: 300px;
  height: 300px;
}
.btn-login:active {
  transform: translateY(0);
}
.btn-login:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}
.btn-login:disabled:hover {
  box-shadow: none;
}

.login-alert {
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 8px;
  display: none;
  animation: fadeIn 0.3s;
}
.login-alert.active {
  display: block;
}
.login-alert.error {
  background: #fadbd8;
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}
.login-alert.success {
  background: #d4edda;
  color: #27ae60;
  border-left: 4px solid #27ae60;
}
.login-alert.info {
  background: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.login-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 13px;
  color: #7f8c8d;
}
.login-footer p {
  margin: 0;
  line-height: 1.6;
}
.login-footer a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s;
}
.login-footer a:hover {
  color: #2980b9;
}

.login-copyright {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}
.login-copyright p {
  margin: 5px 0;
}

.login-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
.login-spinner.active {
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 15px;
  }
  .login-box {
    padding: 35px 25px;
  }
  .login-logo h1 {
    font-size: 24px;
  }
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/**
 * _menu-manager.scss - 메뉴 관리 시스템 전용 스타일
 * Tabulator 기반 트리 테이블 사용
 */
.menu-manager-wrapper {
  width: 100%;
  padding: 16px;
  background: var(--bg-primary);
  min-height: 100vh;
}
.menu-manager-wrapper .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.menu-manager-wrapper .tabulator-row.tabulator-tree-level-1 {
  background: #f8fafc;
}
.menu-manager-wrapper .tabulator-row.tabulator-tree-level-2 {
  background: #f1f5f9;
}
.menu-manager-wrapper .tabulator-row.tabulator-tree-level-3 {
  background: #e2e8f0;
}
.menu-manager-wrapper .tabulator-data-tree-control,
.menu-manager-wrapper .tabulator-data-tree-control-empty,
.menu-manager-wrapper .tabulator-data-tree-branch {
  display: none !important;
}
.menu-manager-wrapper .tabulator-cell {
  white-space: nowrap !important;
}

.menu-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
}

.menu-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.menu-name:hover {
  color: var(--accent-primary);
}
.menu-name i {
  flex-shrink: 0;
}
.menu-name.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.menu-url {
  color: var(--text-secondary);
  font-size: 0.85rem;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-group-inline {
  display: flex;
  gap: 4px;
}

.btn-icon-sm {
  padding: 4px 8px !important;
  font-size: 12px !important;
}

.btn-danger-text {
  color: #ef4444 !important;
}
.btn-danger-text:hover {
  background: rgba(239, 68, 68, 0.1) !important;
}

.menu-manager-wrapper .form-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-secondary);
}
.menu-manager-wrapper .form-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.menu-manager-wrapper .form-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-manager-wrapper .form-section h3 i {
  color: var(--accent-primary);
}
.menu-manager-wrapper .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-manager-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-manager-wrapper .form-group.full-width {
  grid-column: span 2;
}
.menu-manager-wrapper .color-input-wrapper {
  display: flex;
  gap: 8px;
}
.menu-manager-wrapper .color-input-wrapper input[type=color] {
  width: 44px;
  height: 38px;
  padding: 2px;
  border: 1px solid var(--border-primary);
  border-radius: 4px;
  cursor: pointer;
}
.menu-manager-wrapper .color-input-wrapper input[type=text] {
  flex: 1;
}

.menu-manager-wrapper .permission-group {
  margin-bottom: 16px;
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  overflow: hidden;
}
.menu-manager-wrapper .permission-group:last-child {
  margin-bottom: 0;
}
.menu-manager-wrapper .permission-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.menu-manager-wrapper .permission-header:hover {
  background: var(--bg-tertiary);
}
.menu-manager-wrapper .permission-header span {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-manager-wrapper .permission-header span i {
  transition: transform 0.2s ease;
  color: var(--text-secondary);
}
.menu-manager-wrapper .permission-header.collapsed span i {
  transform: rotate(-90deg);
}
.menu-manager-wrapper .permission-header small {
  font-size: 12px;
  color: var(--text-secondary);
  padding-left: 22px;
}
.menu-manager-wrapper .permission-body {
  padding: 16px;
  border-top: 1px solid var(--border-secondary);
}
.menu-manager-wrapper .permission-body.collapsed {
  display: none;
}
.menu-manager-wrapper .permission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.menu-manager-wrapper .permission-table thead {
  background: var(--bg-tertiary);
}
.menu-manager-wrapper .permission-table th,
.menu-manager-wrapper .permission-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-secondary);
}
.menu-manager-wrapper .permission-table th {
  font-weight: 600;
  color: var(--text-secondary);
}
.menu-manager-wrapper .permission-table th.perm-col {
  text-align: center;
  width: 70px;
}
.menu-manager-wrapper .permission-table td.perm-col {
  text-align: center;
}
.menu-manager-wrapper .permission-table tbody tr:hover {
  background: var(--bg-secondary);
}
.menu-manager-wrapper .permission-table input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.menu-manager-wrapper .permission-table .level-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  background: var(--accent-primary);
  color: white;
  border-radius: 10px;
  margin-left: 8px;
}
.menu-manager-wrapper .permission-table .code-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: 4px;
  font-family: monospace;
}

@media (max-width: 768px) {
  .menu-manager-wrapper {
    padding: 12px;
  }
  .menu-manager-wrapper .form-grid {
    grid-template-columns: 1fr;
  }
  .menu-manager-wrapper .form-group.full-width {
    grid-column: span 1;
  }
}
/**
 * _auth-grade-manager.scss - 회원등급 관리 스타일
 * 기존 interface.scss 변수 및 믹스인 사용
 */
.auth-grade-wrapper {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-primary);
}
.auth-grade-wrapper .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.auth-grade-wrapper .tabulator-row.tabulator-tree-level-1 {
  background: #f0fdf4;
}
.auth-grade-wrapper .tabulator-row.tabulator-tree-level-1:hover {
  background: #dcfce7 !important;
}

.grade-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}
.grade-code.sub-grade {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  font-size: 0.8rem;
}

.member-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.member-count.has-members {
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-primary);
}
.member-count i {
  font-size: 0.7rem;
}

.auth-grade-wrapper .empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  color: var(--text-secondary);
}
.auth-grade-wrapper .empty-state i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}
.auth-grade-wrapper .empty-state p {
  margin: 0;
  font-size: 0.95rem;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

.btn-icon {
  margin-right: 4px;
  font-size: 18px;
}

.icon-sm {
  font-size: 16px !important;
}

.icon-md {
  font-size: 20px !important;
}

.icon-lg {
  font-size: 24px !important;
}

.icon-xl {
  font-size: 32px !important;
}

.icon-2x {
  font-size: 36px !important;
}

.icon-3x {
  font-size: 48px !important;
}

.rotating,
.icon-spin {
  animation: icon-spin 1s linear infinite;
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.icon-primary {
  color: var(--primary-color, #3b82f6);
}

.icon-success {
  color: var(--success-color, #22c55e);
}

.icon-warning {
  color: var(--warning-color, #f59e0b);
}

.icon-danger {
  color: var(--danger-color, #ef4444);
}

.icon-info {
  color: var(--info-color, #3b82f6);
}

.icon-muted {
  color: var(--text-muted, #6b7280);
}

.badge, .badge-mini, .badge-notice, .badge-hot, .badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
}
.badge .material-symbols-outlined, .badge-mini .material-symbols-outlined, .badge-notice .material-symbols-outlined, .badge-hot .material-symbols-outlined, .badge-new .material-symbols-outlined {
  font-size: 0.875rem;
  line-height: 1;
}

.badge-gray, .badge-mini {
  background-color: #f9fafb;
  color: #374151;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}
.badge-gray.badge-flat, .badge-flat.badge-mini {
  background-color: #f3f4f6;
  box-shadow: none;
}

.badge-red, .badge-new, .badge-danger {
  background-color: #fef2f2;
  color: #b91c1c;
  box-shadow: inset 0 0 0 1px #fecaca;
}
.badge-red.badge-flat, .badge-flat.badge-new, .badge-flat.badge-danger {
  background-color: #fee2e2;
  box-shadow: none;
}

.badge-yellow, .badge-hot, .badge-warning {
  background-color: #fefce8;
  color: #a16207;
  box-shadow: inset 0 0 0 1px #fef08a;
}
.badge-yellow.badge-flat, .badge-flat.badge-hot, .badge-flat.badge-warning {
  background-color: #fef9c3;
  box-shadow: none;
}

.badge-green, .badge-success {
  background-color: #f0fdf4;
  color: #15803d;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}
.badge-green.badge-flat, .badge-flat.badge-success {
  background-color: #dcfce7;
  box-shadow: none;
}

.badge-blue, .badge-notice, .badge-info, .badge-primary {
  background-color: #eff6ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px #bfdbfe;
}
.badge-blue.badge-flat, .badge-flat.badge-notice, .badge-flat.badge-info, .badge-flat.badge-primary {
  background-color: #dbeafe;
  box-shadow: none;
}

.badge-indigo, .badge-secondary {
  background-color: #eef2ff;
  color: #4338ca;
  box-shadow: inset 0 0 0 1px #c7d2fe;
}
.badge-indigo.badge-flat, .badge-flat.badge-secondary {
  background-color: #e0e7ff;
  box-shadow: none;
}

.badge-purple {
  background-color: #faf5ff;
  color: #7e22ce;
  box-shadow: inset 0 0 0 1px #e9d5ff;
}
.badge-purple.badge-flat {
  background-color: #f3e8ff;
  box-shadow: none;
}

.badge-pink {
  background-color: #fdf2f8;
  color: #be185d;
  box-shadow: inset 0 0 0 1px #fbcfe8;
}
.badge-pink.badge-flat {
  background-color: #fce7f3;
  box-shadow: none;
}

.badge-pill, .badge-notice, .badge-hot, .badge-new {
  border-radius: 9999px;
}

.badge-sm, .badge-mini, .badge-notice, .badge-hot, .badge-new {
  padding: 0 0.375rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.badge-sm .material-symbols-outlined, .badge-mini .material-symbols-outlined, .badge-notice .material-symbols-outlined, .badge-hot .material-symbols-outlined, .badge-new .material-symbols-outlined {
  font-size: 0.75rem;
}

.badge-md {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}

.badge-lg {
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
}
.badge-lg .material-symbols-outlined {
  font-size: 1rem;
}

.badge-dot::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.badge-gray.badge-dot::before, .badge-dot.badge-mini::before {
  background-color: #6b7280;
}

.badge-red.badge-dot::before, .badge-dot.badge-new::before, .badge-dot.badge-danger::before {
  background-color: #ef4444;
}

.badge-yellow.badge-dot::before, .badge-dot.badge-hot::before, .badge-dot.badge-warning::before {
  background-color: #eab308;
}

.badge-green.badge-dot::before, .badge-dot.badge-success::before {
  background-color: #22c55e;
}

.badge-blue.badge-dot::before, .badge-dot.badge-notice::before, .badge-dot.badge-info::before, .badge-dot.badge-primary::before {
  background-color: #3b82f6;
}

.badge-indigo.badge-dot::before, .badge-dot.badge-secondary::before {
  background-color: #6366f1;
}

.badge-purple.badge-dot::before {
  background-color: #a855f7;
}

.badge-pink.badge-dot::before {
  background-color: #ec4899;
}

.badge-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  padding: 0;
  margin-left: 0.25rem;
  margin-right: -0.125rem;
  border: none;
  border-radius: 0.125rem;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.15s ease-in-out;
}
.badge-remove:hover {
  opacity: 1;
}
.badge-remove .material-symbols-outlined {
  font-size: 0.875rem;
  line-height: 1;
}
.badge-remove svg {
  width: 0.75rem;
  height: 0.75rem;
}

.badge-gray .badge-remove, .badge-mini .badge-remove {
  color: #374151;
}
.badge-gray .badge-remove:hover, .badge-mini .badge-remove:hover {
  background-color: rgba(156, 163, 175, 0.2);
}

.badge-red .badge-remove, .badge-new .badge-remove, .badge-danger .badge-remove {
  color: #b91c1c;
}
.badge-red .badge-remove:hover, .badge-new .badge-remove:hover, .badge-danger .badge-remove:hover {
  background-color: rgba(248, 113, 113, 0.2);
}

.badge-yellow .badge-remove, .badge-hot .badge-remove, .badge-warning .badge-remove {
  color: #a16207;
}
.badge-yellow .badge-remove:hover, .badge-hot .badge-remove:hover, .badge-warning .badge-remove:hover {
  background-color: rgba(250, 204, 21, 0.2);
}

.badge-green .badge-remove, .badge-success .badge-remove {
  color: #15803d;
}
.badge-green .badge-remove:hover, .badge-success .badge-remove:hover {
  background-color: rgba(74, 222, 128, 0.2);
}

.badge-blue .badge-remove, .badge-notice .badge-remove, .badge-info .badge-remove, .badge-primary .badge-remove {
  color: #1d4ed8;
}
.badge-blue .badge-remove:hover, .badge-notice .badge-remove:hover, .badge-info .badge-remove:hover, .badge-primary .badge-remove:hover {
  background-color: rgba(96, 165, 250, 0.2);
}

.badge-indigo .badge-remove, .badge-secondary .badge-remove {
  color: #4338ca;
}
.badge-indigo .badge-remove:hover, .badge-secondary .badge-remove:hover {
  background-color: rgba(129, 140, 248, 0.2);
}

.badge-purple .badge-remove {
  color: #7e22ce;
}
.badge-purple .badge-remove:hover {
  background-color: rgba(192, 132, 252, 0.2);
}

.badge-pink .badge-remove {
  color: #be185d;
}
.badge-pink .badge-remove:hover {
  background-color: rgba(244, 114, 182, 0.2);
}

.badge-group {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.badge-icon {
  padding: 0.25rem;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-icon .material-symbols-outlined {
  font-size: 0.875rem;
}
.badge-icon.badge-sm, .badge-icon.badge-mini, .badge-icon.badge-notice, .badge-icon.badge-hot, .badge-icon.badge-new {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.125rem;
}
.badge-icon.badge-sm .material-symbols-outlined, .badge-icon.badge-mini .material-symbols-outlined, .badge-icon.badge-notice .material-symbols-outlined, .badge-icon.badge-hot .material-symbols-outlined, .badge-icon.badge-new .material-symbols-outlined {
  font-size: 0.75rem;
}
.badge-icon.badge-lg {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.375rem;
}
.badge-icon.badge-lg .material-symbols-outlined {
  font-size: 1rem;
}

.badge-status::before {
  animation: badge-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.badge-status.badge-static::before {
  animation: none;
}

@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.badge-count {
  min-width: 1.25rem;
  padding: 0 0.375rem;
  text-align: center;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-corner {
  position: absolute;
}
.badge-corner.top-right {
  top: -0.375rem;
  right: -0.375rem;
}
.badge-corner.top-left {
  top: -0.375rem;
  left: -0.375rem;
}
.badge-corner.bottom-right {
  bottom: -0.375rem;
  right: -0.375rem;
}
.badge-corner.bottom-left {
  bottom: -0.375rem;
  left: -0.375rem;
}

.badge-wrapper {
  position: relative;
  display: inline-flex;
}

.badge-hover {
  cursor: pointer;
}
.badge-hover:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}
.badge-hover:active {
  transform: translateY(0);
}

[data-theme=dark] .badge-gray, [data-theme=dark] .badge-mini,
.dark .badge-gray,
.dark .badge-mini {
  background-color: #374151;
  color: #f3f4f6;
  box-shadow: inset 0 0 0 1px #4b5563;
}
[data-theme=dark] .badge-gray.badge-flat, [data-theme=dark] .badge-flat.badge-mini,
.dark .badge-gray.badge-flat,
.dark .badge-flat.badge-mini {
  background-color: #4b5563;
  box-shadow: none;
}
[data-theme=dark] .badge-gray.badge-dot::before, [data-theme=dark] .badge-dot.badge-mini::before,
.dark .badge-gray.badge-dot::before,
.dark .badge-dot.badge-mini::before {
  background-color: #9ca3af;
}
[data-theme=dark] .badge-red, [data-theme=dark] .badge-danger, [data-theme=dark] .badge-new,
.dark .badge-red,
.dark .badge-danger,
.dark .badge-new {
  background-color: #450a0a;
  color: #fecaca;
  box-shadow: inset 0 0 0 1px #7f1d1d;
}
[data-theme=dark] .badge-red.badge-flat, [data-theme=dark] .badge-flat.badge-danger, [data-theme=dark] .badge-flat.badge-new,
.dark .badge-red.badge-flat,
.dark .badge-flat.badge-danger,
.dark .badge-flat.badge-new {
  background-color: #7f1d1d;
  box-shadow: none;
}
[data-theme=dark] .badge-red.badge-dot::before, [data-theme=dark] .badge-dot.badge-danger::before, [data-theme=dark] .badge-dot.badge-new::before,
.dark .badge-red.badge-dot::before,
.dark .badge-dot.badge-danger::before,
.dark .badge-dot.badge-new::before {
  background-color: #f87171;
}
[data-theme=dark] .badge-yellow, [data-theme=dark] .badge-warning, [data-theme=dark] .badge-hot,
.dark .badge-yellow,
.dark .badge-warning,
.dark .badge-hot {
  background-color: #422006;
  color: #fef08a;
  box-shadow: inset 0 0 0 1px #713f12;
}
[data-theme=dark] .badge-yellow.badge-flat, [data-theme=dark] .badge-flat.badge-warning, [data-theme=dark] .badge-flat.badge-hot,
.dark .badge-yellow.badge-flat,
.dark .badge-flat.badge-warning,
.dark .badge-flat.badge-hot {
  background-color: #713f12;
  box-shadow: none;
}
[data-theme=dark] .badge-yellow.badge-dot::before, [data-theme=dark] .badge-dot.badge-warning::before, [data-theme=dark] .badge-dot.badge-hot::before,
.dark .badge-yellow.badge-dot::before,
.dark .badge-dot.badge-warning::before,
.dark .badge-dot.badge-hot::before {
  background-color: #facc15;
}
[data-theme=dark] .badge-green, [data-theme=dark] .badge-success,
.dark .badge-green,
.dark .badge-success {
  background-color: #052e16;
  color: #bbf7d0;
  box-shadow: inset 0 0 0 1px #14532d;
}
[data-theme=dark] .badge-green.badge-flat, [data-theme=dark] .badge-flat.badge-success,
.dark .badge-green.badge-flat,
.dark .badge-flat.badge-success {
  background-color: #14532d;
  box-shadow: none;
}
[data-theme=dark] .badge-green.badge-dot::before, [data-theme=dark] .badge-dot.badge-success::before,
.dark .badge-green.badge-dot::before,
.dark .badge-dot.badge-success::before {
  background-color: #4ade80;
}
[data-theme=dark] .badge-blue, [data-theme=dark] .badge-primary, [data-theme=dark] .badge-info, [data-theme=dark] .badge-notice,
.dark .badge-blue,
.dark .badge-primary,
.dark .badge-info,
.dark .badge-notice {
  background-color: #172554;
  color: #bfdbfe;
  box-shadow: inset 0 0 0 1px #1e3a8a;
}
[data-theme=dark] .badge-blue.badge-flat, [data-theme=dark] .badge-flat.badge-primary, [data-theme=dark] .badge-flat.badge-info, [data-theme=dark] .badge-flat.badge-notice,
.dark .badge-blue.badge-flat,
.dark .badge-flat.badge-primary,
.dark .badge-flat.badge-info,
.dark .badge-flat.badge-notice {
  background-color: #1e3a8a;
  box-shadow: none;
}
[data-theme=dark] .badge-blue.badge-dot::before, [data-theme=dark] .badge-dot.badge-primary::before, [data-theme=dark] .badge-dot.badge-info::before, [data-theme=dark] .badge-dot.badge-notice::before,
.dark .badge-blue.badge-dot::before,
.dark .badge-dot.badge-primary::before,
.dark .badge-dot.badge-info::before,
.dark .badge-dot.badge-notice::before {
  background-color: #60a5fa;
}
[data-theme=dark] .badge-indigo, [data-theme=dark] .badge-secondary,
.dark .badge-indigo,
.dark .badge-secondary {
  background-color: #1e1b4b;
  color: #c7d2fe;
  box-shadow: inset 0 0 0 1px #312e81;
}
[data-theme=dark] .badge-indigo.badge-flat, [data-theme=dark] .badge-flat.badge-secondary,
.dark .badge-indigo.badge-flat,
.dark .badge-flat.badge-secondary {
  background-color: #312e81;
  box-shadow: none;
}
[data-theme=dark] .badge-indigo.badge-dot::before, [data-theme=dark] .badge-dot.badge-secondary::before,
.dark .badge-indigo.badge-dot::before,
.dark .badge-dot.badge-secondary::before {
  background-color: #818cf8;
}
[data-theme=dark] .badge-purple,
.dark .badge-purple {
  background-color: #3b0764;
  color: #e9d5ff;
  box-shadow: inset 0 0 0 1px #581c87;
}
[data-theme=dark] .badge-purple.badge-flat,
.dark .badge-purple.badge-flat {
  background-color: #581c87;
  box-shadow: none;
}
[data-theme=dark] .badge-purple.badge-dot::before,
.dark .badge-purple.badge-dot::before {
  background-color: #c084fc;
}
[data-theme=dark] .badge-pink,
.dark .badge-pink {
  background-color: #500724;
  color: #fbcfe8;
  box-shadow: inset 0 0 0 1px #831843;
}
[data-theme=dark] .badge-pink.badge-flat,
.dark .badge-pink.badge-flat {
  background-color: #831843;
  box-shadow: none;
}
[data-theme=dark] .badge-pink.badge-dot::before,
.dark .badge-pink.badge-dot::before {
  background-color: #f472b6;
}

@media (prefers-color-scheme: dark) {
  .badge-gray, .badge-mini {
    background-color: #374151;
    color: #f3f4f6;
    box-shadow: inset 0 0 0 1px #4b5563;
  }
  .badge-gray.badge-flat, .badge-flat.badge-mini {
    background-color: #4b5563;
    box-shadow: none;
  }
  .badge-gray.badge-dot::before, .badge-dot.badge-mini::before {
    background-color: #9ca3af;
  }
  .badge-red, .badge-danger, .badge-new {
    background-color: #450a0a;
    color: #fecaca;
    box-shadow: inset 0 0 0 1px #7f1d1d;
  }
  .badge-red.badge-flat, .badge-flat.badge-danger, .badge-flat.badge-new {
    background-color: #7f1d1d;
    box-shadow: none;
  }
  .badge-red.badge-dot::before, .badge-dot.badge-danger::before, .badge-dot.badge-new::before {
    background-color: #f87171;
  }
  .badge-yellow, .badge-warning, .badge-hot {
    background-color: #422006;
    color: #fef08a;
    box-shadow: inset 0 0 0 1px #713f12;
  }
  .badge-yellow.badge-flat, .badge-flat.badge-warning, .badge-flat.badge-hot {
    background-color: #713f12;
    box-shadow: none;
  }
  .badge-yellow.badge-dot::before, .badge-dot.badge-warning::before, .badge-dot.badge-hot::before {
    background-color: #facc15;
  }
  .badge-green, .badge-success {
    background-color: #052e16;
    color: #bbf7d0;
    box-shadow: inset 0 0 0 1px #14532d;
  }
  .badge-green.badge-flat, .badge-flat.badge-success {
    background-color: #14532d;
    box-shadow: none;
  }
  .badge-green.badge-dot::before, .badge-dot.badge-success::before {
    background-color: #4ade80;
  }
  .badge-blue, .badge-primary, .badge-info, .badge-notice {
    background-color: #172554;
    color: #bfdbfe;
    box-shadow: inset 0 0 0 1px #1e3a8a;
  }
  .badge-blue.badge-flat, .badge-flat.badge-primary, .badge-flat.badge-info, .badge-flat.badge-notice {
    background-color: #1e3a8a;
    box-shadow: none;
  }
  .badge-blue.badge-dot::before, .badge-dot.badge-primary::before, .badge-dot.badge-info::before, .badge-dot.badge-notice::before {
    background-color: #60a5fa;
  }
  .badge-indigo, .badge-secondary {
    background-color: #1e1b4b;
    color: #c7d2fe;
    box-shadow: inset 0 0 0 1px #312e81;
  }
  .badge-indigo.badge-flat, .badge-flat.badge-secondary {
    background-color: #312e81;
    box-shadow: none;
  }
  .badge-indigo.badge-dot::before, .badge-dot.badge-secondary::before {
    background-color: #818cf8;
  }
  .badge-purple {
    background-color: #3b0764;
    color: #e9d5ff;
    box-shadow: inset 0 0 0 1px #581c87;
  }
  .badge-purple.badge-flat {
    background-color: #581c87;
    box-shadow: none;
  }
  .badge-purple.badge-dot::before {
    background-color: #c084fc;
  }
  .badge-pink {
    background-color: #500724;
    color: #fbcfe8;
    box-shadow: inset 0 0 0 1px #831843;
  }
  .badge-pink.badge-flat {
    background-color: #831843;
    box-shadow: none;
  }
  .badge-pink.badge-dot::before {
    background-color: #f472b6;
  }
}

/*# sourceMappingURL=interface.css.map */
