/* 기본 설정 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

:root {
  /* 기본 색상 */
  --bg-primary: #0a0a1f;
  --bg-secondary: #111132;
  --bg-tertiary: rgba(20, 20, 50, 0.5);
  
  /* 패널 배경 */
  --panel-bg-primary: rgba(26, 27, 38, 0.7);
  --panel-bg-secondary: rgba(20, 21, 33, 0.5);
  --panel-border: rgba(99, 102, 241, 0.2);
  
  /* 액센트 색상 */
  --accent-primary: #4f46e5;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #2563eb;
  
  /* 테마 색상 */
  --emerald-light: #10b981;
  --emerald-dark: rgba(16, 185, 129, 0.2);
  --blue-light: #3b82f6;
  --blue-dark: rgba(59, 130, 246, 0.2);
  --purple-light: #8b5cf6;
  --purple-dark: rgba(139, 92, 246, 0.2);
  --red-light: #ef4444;
  --red-dark: rgba(239, 68, 68, 0.1);
  
  /* 텍스트 색상 */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-tertiary: #64748b;
  --text-muted: #475569;
  
  /* 그림자 */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 5px 10px rgba(99, 102, 241, 0.2);
}

/* 리셋 & 기본 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: linear-gradient(to bottom right, var(--bg-primary), var(--bg-secondary));
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* 레이아웃 */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 헤더 */
.header {
  background: linear-gradient(to right, rgba(67, 56, 202, 0.8), rgba(79, 70, 229, 0.6), rgba(124, 58, 237, 0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
}

/* 관리자 및 비관리자 권한 네비게이션 링크 스타일 */
.nav-link.disabled {
  color: var(--text-tertiary);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.nav-link.disabled::after {
  display: none;
}

.nav-link.admin {
  position: relative;
}

.nav-link.admin::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -6px;
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, #10b981, #34d399);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

/* 관리자 표시 툴팁 */
.nav-link.admin:hover::after {
  content: '관리자 권한';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-primary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* 카드 */
.card {
  background: linear-gradient(to bottom right, var(--panel-bg-primary), var(--panel-bg-secondary));
  border: 1px solid var(--panel-border);
  border-radius: 0.75rem;
  padding: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.card-header .icon {
  color: var(--accent-primary);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.card-subtitle {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.card-body {
  margin: 1rem 0;
}

.card-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 0.9rem;
  border: none;
  outline: none;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  color: white;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn-danger {
  background: linear-gradient(to right, #dc2626, #ef4444);
  color: white;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(to right, #059669, #10b981);
  color: white;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* 폼 */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--text-primary);
  transition: all 0.3s;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

textarea.form-control {
  min-height: 6rem;
  resize: vertical;
}

/* 배지 */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.badge-primary {
  background: var(--accent-primary);
  color: white;
}

.badge-success {
  background: var(--emerald-light);
  color: white;
}

.badge-warning {
  background: #f59e0b;
  color: white;
}

.badge-danger {
  background: var(--red-light);
  color: white;
}

.badge-info {
  background: var(--blue-light);
  color: white;
}

.badge-secondary {
  background: #6b7280;
  color: white;
}

/* 알림 */
.alert {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.alert-success {
  background: var(--emerald-dark);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-light);
}

.alert-info {
  background: var(--blue-dark);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-light);
}

.alert-warning {
  background: var(--purple-dark);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple-light);
}

.alert-danger {
  background: var(--red-dark);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red-light);
}

/* 유틸리티 */
.section {
  padding: 1.5rem 0;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-title {
  position: relative;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title::before {
  display: none;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    display: flex;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

/* 모바일 화면에서의 그리드 조정 */
@media (max-width: 767px) {
  .grid-3 {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

.flex {
  display: flex;
}

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

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/* 애니메이션 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* 스크롤바 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 모달 기본 스타일 */
.alert-modal,
.confirm-modal,
.delete-modal,
.status-modal,
.idea-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

/* 모달 열림 상태 */
.alert-modal.open,
.confirm-modal.open,
.delete-modal.open,
.status-modal.open,
.idea-detail-modal.open {
    display: flex;
}

/* 모달 배경 오버레이 */
.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* 모달 다이얼로그 */
.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 1.75rem auto;
    background: var(--modal-gradient);
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 2001;
    animation: modalFadeIn 0.3s ease-out;
}

/* 모달 헤더 */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 모달 본문 */
.modal-body {
    padding: 1.5rem;
}

/* 모달 푸터 */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.5rem;
}

/* 모달 닫기 버튼 */
.modal-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
}

/* 모달 애니메이션 */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 알림 아이콘 스타일 */
.alert-icon {
    margin-right: 0.5rem;
    color: var(--warning-text);
}

/* 모달별 헤더 배경색 */
.alert-modal .modal-header {
    background: var(--info-bg);
}

.confirm-modal .modal-header {
    background: var(--warning-bg);
}

.delete-modal .modal-header {
    background: var(--danger-bg);
}

.status-modal .modal-header {
    background: var(--primary-bg);
}

/* 평가 기준 섹션 개선 */
.score-criteria {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.criteria-item {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.criteria-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.criteria-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.criteria-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.criteria-header span {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 1rem;
  color: var(--accent-primary);
}

.progress {
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  border-radius: 1rem;
  transition: width 0.5s ease;
}

/* 평가 기준별 컬러 */
.criteria-item:nth-child(1) .progress-bar {
  background: linear-gradient(to right, var(--emerald-light), #34d399);
}

.criteria-item:nth-child(2) .progress-bar {
  background: linear-gradient(to right, var(--blue-light), #60a5fa);
}

.criteria-item:nth-child(3) .progress-bar {
  background: linear-gradient(to right, var(--purple-light), #a78bfa);
}

.criteria-item:nth-child(4) .progress-bar {
  background: linear-gradient(to right, #eab308, #fbbf24);
}

.criteria-description {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* 리스크 정보 스타일 */
.risk-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(244, 114, 182, 0.1);
  border-radius: 0.75rem;
  border-left: 3px solid rgba(244, 114, 182, 0.5);
}

.risk-icon {
  color: #f472b6;
  width: 1.2rem;
  height: 1.2rem;
}

.risk-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 아이디어 제출 폼 개선 */
.form-section {
  position: relative;
}

.form-section .card {
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.1);
  overflow: hidden;
}

.section-title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

#ideaForm {
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  padding: 1.25rem;
}

#ideaForm .form-group {
  margin-bottom: 1rem;
}

#ideaForm .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

#ideaForm .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

#ideaForm .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

#ideaForm .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

#ideaForm .btn-primary {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  border: none;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

#ideaForm .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

#ideaForm .btn-primary i {
  margin-right: 0.5rem;
}

.criteria-icon {
  width: 1rem;
  height: 1rem;
}

.form-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent-primary);
  margin-right: 0.25rem;
}

/* 통계 카드 개선 */
.grid-3 .card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0.8rem;
  min-height: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 140px;
  flex-shrink: 0;
  gap: 0.65rem;
  border-radius: 0.6rem;
}

.grid-3 .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.2);
}

.grid-3 .card-header {
  margin-bottom: 0;
  gap: 0.4rem;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: flex-start;
}

.grid-3 .card-header .icon {
  color: var(--accent-primary);
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 0.2rem;
}

.grid-3 .card-title {
  font-size: 0.78rem;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.grid-3 .card-subtitle {
  font-size: 0.65rem;
  margin-top: 0;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.grid-3 .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.grid-3 .card-body h2 {
  font-size: 1.35rem;
  margin: 0;
  line-height: 1;
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* 정보 섹션 */
.info-section .card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 1rem;
}

.info-section .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.1), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.info-section .grid-2 .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-section .grid-2 .card-body {
  flex: 1;
  margin: 0.5rem 0;
}

.info-section .grid-2 .card-body p {
  margin: 0;
  font-size: 0.9rem;
}

/* 모바일 화면 최적화 */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .card {
    padding: 0.875rem;
  }
}

/* 주요 기능 아이콘 스타일 */
.info-section .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.info-section .flex p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* 푸터 높이 최적화 */
.footer {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* 사용자 정보 스타일 */
.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.user-info:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

.user-info.has-user {
  background: rgba(99, 102, 241, 0.15);
}

.user-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text-secondary);
}

.user-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.user-team {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}

/* 모바일 화면에서 헤더 레이아웃 조정 */
@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
  
  .user-info {
    margin-bottom: 0.5rem;
  }
} 