@charset "UTF-8";
/* ==================== Reset & Base Styles ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1E3A5F;
  --color-primary-light: #60A5FA;
  --color-accent-pink: #F9A8D4;
  --color-bg-page: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-bg-section: #EEF2FF;
  --color-bg-success: #ECFDF5;
  --color-text-heading: #1E3A5F;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-border: rgba(30, 58, 95, 0.12);
  --color-success-text: #065F46;
  --color-pink-text: #9D174D;
  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
  --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.12);
  --shadow-lg: 0 8px 24px rgba(37, 99, 235, 0.15);
  --radius-card: 12px;
  --radius-btn: 10px;
  --radius-badge: 20px;
  --radius-input: 8px; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg-page);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Typography - 깔끔하고 심플한 글자 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.4;
  margin: 0; }

h1 {
  font-size: 1.75rem; }

h2 {
  font-size: 1.375rem; }

h3 {
  font-size: 1.0625rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 0.9375rem; }

h6 {
  font-size: 0.8125rem; }

p {
  margin: 0;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: var(--color-text-body); }

small {
  font-size: 0.75rem;
  color: var(--color-text-muted); }

/* ==================== Navigation ==================== */
.navbar {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 95px; }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1; }

.nav-message {
  font-family: 'Single Day', 'Gamja Flower', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #93C5FD;
  letter-spacing: 0.3px;
  animation: fadeIn 1s ease;
  transition: color 0.2s ease; }

.nav-message:hover {
  color: #FFFFFF; }

.dalkong-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #FFA6A6;
  border: none;
  padding: 2px;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(255, 166, 166, 0.4); }

.nav-brand i {
  font-size: 1.8rem; }

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px; }

.user-name {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #E0E7FF; }

.btn-icon {
  background: transparent;
  color: #93C5FD;
  border: 1.5px solid var(--color-primary-light);
  padding: 10px 12px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 1.0625rem;
  transition: all 0.2s ease; }

.btn-icon:hover {
  background: var(--color-bg-section);
  color: #FFFFFF;
  transform: translateY(-2px); }

.btn-guide-special {
  background: var(--color-accent-pink);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px; }

.btn-guide-special:hover {
  background: #F472B4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 168, 212, 0.4); }

.btn-logout {
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease; }

.btn-logout:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }

/* ==================== Main Container ==================== */
.main-container {
  margin: 0 auto;
  display: flex;
  gap: 0;
  min-height: calc(100vh - 76px); }

/* ==================== Sidebar ==================== */
.sidebar {
  width: 130px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease; }

.sidebar-toggle {
  margin-top: 17px;
  width: 100%;
  min-width: 80px;
  background: var(--color-bg-section);
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 14px;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.sidebar-toggle:hover {
  background: var(--color-primary);
  color: #FFFFFF; }

.sidebar.collapsed {
  width: 80px; }

.sidebar.collapsed .sidebar-toggle {
  min-width: 60px;
  font-size: 1rem;
  padding: 12px; }

.sidebar.collapsed .menu-item {
  width: calc(100% - 12px);
  margin: 6px 6px;
  padding: 18px 4px; }

.sidebar.collapsed .menu-item .menu-text {
  display: none; }

.sidebar.collapsed .menu-item i {
  font-size: 1.4rem; }

.sidebar-menu {
  padding: 12px 0; }

.menu-item {
  width: calc(100% - 16px);
  background: var(--color-bg-section);
  border: 1.5px solid var(--color-border);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all 0.2s ease;
  border-radius: var(--radius-card);
  margin: 6px 8px; }

.menu-item .menu-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.menu-item i {
  font-size: 1.5rem;
  width: auto;
  color: var(--color-primary); }

.menu-item:hover {
  background: var(--color-bg-card);
  color: var(--color-primary);
  border-color: var(--color-primary-light);
  transform: translateY(-2px); }

.menu-item:hover i {
  color: var(--color-primary-light); }

.menu-item.active {
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 600;
  border-color: var(--color-primary); }

.menu-item.active i {
  color: #FFFFFF; }

/* ==================== Content Area ==================== */
.content-area {
  flex: 1;
  padding: 24px;
  background: var(--color-bg-page); }

.content-section {
  display: none;
  animation: fadeIn 0.4s ease; }

.content-section.active {
  display: block; }

.section-header {
  margin-bottom: 24px; }

.section-header h2 {
  font-size: 1.375rem;
  color: var(--color-text-heading);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px; }

.section-header h2 i {
  color: var(--color-primary); }

.section-subtitle {
  color: var(--text-gray);
  font-size: 1rem; }

/* ==================== Chat Section ==================== */
.chat-container {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px; }

.message {
  display: flex;
  gap: 12px;
  max-width: 80%; }

.message.assistant {
  align-self: flex-start; }

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse; }

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.message.user .message-avatar {
  background: var(--accent-blue); }

.message-content {
  flex: 1; }

.message-text {
  background: #f8f9fa;
  padding: 14px 18px;
  border-radius: 12px;
  line-height: 1.6; }

.message.user .message-text {
  background: var(--primary-green);
  color: white; }

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px; }

.quick-btn {
  background: white;
  border: 2px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  text-align: left; }

.quick-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px); }

.quick-btn i {
  font-size: 1.1rem; }

.chat-input-container {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color); }

.input-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 10px; }

#chatInput {
  flex: 1;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Noto Sans KR', sans-serif;
  resize: none;
  max-height: 120px;
  transition: border-color 0.3s ease; }

#chatInput:focus {
  outline: none;
  border-color: var(--primary-green); }

.btn-send {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center; }

.btn-send:hover {
  background: var(--primary-green-dark);
  transform: scale(1.05); }

.btn-send i {
  font-size: 1.2rem; }

.api-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.85rem; }

.api-notice i {
  color: var(--accent-blue); }

/* ==================== Topic Search Section ==================== */
.topic-search-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px; }

.search-form-card,
.topic-results {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.form-group {
  margin-bottom: 24px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  gap: 8px; }

.form-group label i {
  color: var(--color-primary); }

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-input);
  font-size: 0.9375rem;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.2s ease; }

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease; }

.radio-label:hover {
  border-color: var(--primary-green);
  background: rgba(13, 94, 71, 0.05); }

.radio-label input[type="radio"] {
  display: none; }

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease; }

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary-green); }

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%; }

.radio-text {
  display: flex;
  flex-direction: column;
  gap: 2px; }

.radio-text strong {
  font-size: 1rem; }

.radio-text small {
  font-size: 0.85rem;
  color: var(--text-gray); }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease; }

.checkbox-label:hover {
  border-color: var(--primary-green); }

.checkbox-label input[type="checkbox"]:checked {
  accent-color: var(--primary-green); }

/* Fusion Subjects Input */
.fusion-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.fusion-subjects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  min-height: 50px; }

.fusion-subject-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #1976d2;
  border-radius: 20px;
  font-weight: 600;
  color: #1565c0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  animation: fadeInScale 0.3s ease; }

.fusion-subject-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3); }

.fusion-subject-tag i {
  cursor: pointer;
  transition: all 0.3s ease; }

.fusion-subject-tag i:hover {
  color: #d32f2f;
  transform: scale(1.2); }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8); }
  to {
    opacity: 1;
    transform: scale(1); } }
.btn-primary {
  width: 100%;
  background: var(--color-primary);
  color: #FFFFFF;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; }

.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px); }

.btn-large {
  padding: 16px 28px;
  font-size: 1.1rem; }

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }

.results-header h3 {
  font-size: 1.3rem;
  color: var(--text-dark); }

.results-count {
  background: #EEF2FF;
  color: #4338CA;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 500; }

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.topic-card {
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  transition: all 0.2s ease;
  cursor: pointer; }

.topic-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px); }

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px; }

.topic-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px; }

.topic-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600; }

.topic-badge.fusion {
  background: #EEF2FF;
  color: #4338CA; }

.topic-badge.focused {
  background: #FCE7F3;
  color: var(--color-pink-text); }

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-gray); }

.topic-meta span {
  display: flex;
  align-items: center;
  gap: 4px; }

.topic-description {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px; }

.topic-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; }

.keyword-tag {
  background: #EEF2FF;
  color: #4338CA;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 500; }

.topic-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px; }

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 600; }

.btn-secondary:hover {
  background: var(--color-bg-section); }

/* ==================== Activities Section ==================== */
.activities-container {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 24px; }

.activity-form-card,
.activities-list-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.activity-form-card h3,
.activities-list-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark); }

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.activity-item {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease; }

.activity-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm); }

.activity-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px; }

.activity-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark); }

.activity-type-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600; }

.activity-type-badge.진로활동 {
  background: #fff0f8;
  color: #2e7d32; }

.activity-type-badge.자율활동 {
  background: #e3f2fd;
  color: #1565c0; }

.activity-type-badge.동아리활동 {
  background: #fff3e0;
  color: #ef6c00; }

.activity-type-badge.봉사활동 {
  background: #fce4ec;
  color: #c2185b; }

.activity-type-badge.독서활동 {
  background: #f3e5f5;
  color: #7b1fa2; }

.activity-type-badge.세부능력및특기사항 {
  background: #e0f2f1;
  color: #00695c; }

.activity-type-badge.행동특성및종합의견 {
  background: #fff9c4;
  color: #f57f17; }

.activity-item-meta {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 10px; }

.activity-item-description {
  color: var(--text-dark);
  line-height: 1.6; }

/* ==================== Roadmap Section ==================== */
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.roadmap-form-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.roadmap-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark); }

.career-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px; }

.career-option {
  background: white;
  border: 2px solid var(--border-color);
  padding: 24px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; }

.career-option:hover {
  border-color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm); }

.career-option i {
  font-size: 2.5rem;
  color: var(--primary-green); }

.career-option span {
  font-weight: 600;
  color: var(--text-dark); }

/* ===== v4.1 세분화된 진로 선택 UI ===== */
.career-categories {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.career-category {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease; }

.career-category:hover {
  border-color: var(--primary-green);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1); }

.career-category-btn {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark); }

.career-category-btn:hover {
  background: linear-gradient(135deg, #fff0f8 0%, #ffe4f1 100%); }

.career-category-btn i:first-child {
  font-size: 1.5rem;
  color: var(--primary-green); }

.career-category-btn span {
  flex: 1;
  text-align: left; }

.career-toggle {
  font-size: 0.9rem;
  color: #999;
  transition: transform 0.3s ease; }

.career-category.active .career-toggle {
  transform: rotate(180deg); }

.career-subcategories {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  border-top: 1px solid #e0e0e0; }

.career-category.active .career-subcategories {
  max-height: 300px; }

.career-sub-option {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 20px 14px 54px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  color: #555;
  border-left: 3px solid transparent;
  position: relative; }

.career-sub-option::before {
  content: '→';
  position: absolute;
  left: 32px;
  color: #999;
  font-size: 0.9rem; }

.career-sub-option:hover {
  background: white;
  color: var(--primary-green);
  border-left-color: var(--primary-green);
  padding-left: 58px; }

.career-sub-option:hover::before {
  color: var(--primary-green);
  left: 36px; }

.career-sub-option.selected {
  background: #fff0f8;
  color: var(--primary-green);
  font-weight: 600;
  border-left-color: var(--primary-green); }

.roadmap-display {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  min-height: 400px; }

/* ==================== Saved Resources Section ==================== */
.saved-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color); }

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--text-gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px; }

.tab-btn:hover {
  color: var(--primary-green); }

.tab-btn.active {
  color: var(--primary-green);
  font-weight: 600;
  border-bottom-color: var(--primary-green); }

.saved-content {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  min-height: 400px; }

/* ==================== Empty State ==================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light); }

.empty-state i {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5; }

.empty-state p {
  font-size: 1.05rem; }

/* ==================== Loading Overlay ==================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999; }

.loading-overlay.active {
  display: flex; }

.loading-spinner {
  background: white;
  padding: 40px 60px;
  border-radius: 16px;
  text-align: center; }

.loading-spinner i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 16px; }

.loading-spinner p {
  font-size: 1.1rem;
  color: var(--text-dark); }

/* ==================== Animations ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
  .topic-search-container {
    grid-template-columns: 1fr; }

  .activities-container {
    grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  /* 네비게이션 바 모바일 최적화 */
  .nav-container {
    padding: 0.8rem 1.2rem; }

  .nav-brand {
    font-size: 1.1rem;
    gap: 10px; }

  .dalkong-logo {
    width: 38px;
    height: 38px; }

  .user-name {
    font-size: 0.95rem; }

  .btn-logout {
    padding: 7px 12px;
    font-size: 0.85rem; }

  .main-container {
    flex-direction: column; }

  .sidebar {
    width: 100%;
    height: auto;
    position: static; }

  .sidebar-menu {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; }

  .sidebar-menu::-webkit-scrollbar {
    display: none; }

  .menu-item {
    flex-direction: column;
    padding: 14px 10px;
    gap: 9px;
    font-size: 0.88rem;
    min-width: 85px;
    flex-shrink: 0;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent; }

  .menu-item.active {
    border-left: none;
    border-bottom-color: var(--primary-green); }

  .menu-item i {
    font-size: 1.4rem; }

  .content-area {
    padding: 20px 15px; }

  .chat-container {
    height: calc(100vh - 280px); }

  .quick-actions {
    grid-template-columns: 1fr; }

  .career-options {
    grid-template-columns: repeat(2, 1fr); } }
/* ==================== 2026 Guidelines Section ==================== */
.guidelines-container {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.guideline-alert {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border-left: 5px solid #ffc107;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: start;
  gap: 16px;
  box-shadow: var(--shadow-sm); }

.guideline-alert i {
  font-size: 2rem;
  color: #f57c00;
  flex-shrink: 0; }

.guideline-alert strong {
  color: #e65100; }

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px; }

.guideline-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary-green);
  transition: all 0.3s ease; }

.guideline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px); }

.guideline-card.importance-필수 {
  border-left-color: #e74c3c; }

.guideline-card.importance-권장 {
  border-left-color: #f39c12; }

.guideline-card.importance-참고 {
  border-left-color: #3498db; }

.guideline-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px; }

.guideline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark); }

.importance-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600; }

.importance-badge.필수 {
  background: #ffebee;
  color: #c62828; }

.importance-badge.권장 {
  background: #fff8e1;
  color: #f57c00; }

.importance-badge.참고 {
  background: #e3f2fd;
  color: #1565c0; }

.guideline-content {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px; }

.guideline-examples, .guideline-warnings {
  margin-top: 16px; }

.guideline-examples h5, .guideline-warnings h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark); }

.guideline-examples ul, .guideline-warnings ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.guideline-examples li {
  padding: 8px 12px;
  background: #f1f8e9;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 0.9rem; }

.guideline-warnings li {
  padding: 8px 12px;
  background: #ffebee;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #c62828; }

/* ==================== AI Assistant Section ==================== */
.ai-assistant-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 30px; }

.assistant-form-card, .assistant-guide-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.assistant-form-card h3, .assistant-guide-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px; }

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-gray); }

.prompt-input {
  margin-bottom: 10px; }

#promptsContainer {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.checkbox-label-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease; }

.checkbox-label-inline:hover {
  border-color: var(--primary-green); }

.checkbox-label-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-green); }

.guide-section {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 10px; }

.guide-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark); }

.guide-section.highlight {
  background: #fff3e0;
  border-left: 4px solid #ff9800; }

.guide-section.highlight p {
  margin: 8px 0;
  line-height: 1.6; }

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0; }

.guide-list li {
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.5; }

.guide-list.good li {
  background: #fff0f8;
  color: #2e7d32; }

.guide-list.good li i {
  color: #4caf50;
  margin-top: 2px; }

.guide-list.bad li {
  background: #ffebee;
  color: #c62828; }

.guide-list.bad li i {
  color: #f44336;
  margin-top: 2px; }

.ai-usage-history {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.ai-usage-history h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px; }

.usage-list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.usage-item {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease; }

.usage-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm); }

.usage-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px; }

.usage-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark); }

.ai-model-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #e3f2fd;
  color: #1976d2; }

.usage-item-section {
  margin-bottom: 16px; }

.usage-item-section h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 8px; }

.usage-item-section p {
  color: var(--text-dark);
  line-height: 1.6;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px; }

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600; }

.compliance-badge.pass {
  background: #fff0f8;
  color: #2e7d32; }

.compliance-badge.fail {
  background: #ffebee;
  color: #c62828; }

/* ==================== Compliance Check Section ==================== */
.compliance-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px; }

.compliance-select-card, .compliance-result {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.compliance-select-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark); }

.compliance-score {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px; }

.score-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 3rem;
  font-weight: 800;
  color: white; }

.score-circle.excellent {
  background: linear-gradient(135deg, #4caf50, #8bc34a); }

.score-circle.good {
  background: linear-gradient(135deg, #8bc34a, #cddc39);
  color: var(--text-dark); }

.score-circle.warning {
  background: linear-gradient(135deg, #ffc107, #ff9800); }

.score-circle.danger {
  background: linear-gradient(135deg, #ff5722, #f44336); }

.score-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark); }

.compliance-checklist {
  margin-bottom: 24px; }

.compliance-checklist h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark); }

.checklist-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f8f9fa; }

.checklist-item.checked {
  background: #fff0f8; }

.checklist-item.unchecked {
  background: #ffebee; }

.checklist-item i {
  font-size: 1.2rem;
  margin-top: 2px; }

.checklist-item.checked i {
  color: #4caf50; }

.checklist-item.unchecked i {
  color: #f44336; }

.recommendations {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: 8px; }

.recommendations h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark); }

.recommendations ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.recommendations li {
  padding: 10px 12px;
  margin-bottom: 8px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: start;
  gap: 10px; }

.recommendations li i {
  color: #ff9800;
  margin-top: 2px; }

/* ==================== Responsive Design Updates ==================== */
@media (max-width: 1200px) {
  .guidelines-grid {
    grid-template-columns: 1fr; }

  .ai-assistant-container {
    grid-template-columns: 1fr; }

  .compliance-container {
    grid-template-columns: 1fr; } }
/* ==================== Home Dashboard Section (Modern Z-Gen Style) ==================== */
.dashboard-header {
  margin-bottom: 30px; }

/* 모던 웰컴 카드 */
.modern-welcome-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: fadeIn 0.6s ease; }

.welcome-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  position: relative; }

/* 달콩이 서클 - 대형 */
.dalkong-circle-large {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
  animation: pulse 2s ease-in-out infinite; }

/* 달콩이 서클 */
.dalkong-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
  animation: pulse 2s ease-in-out infinite; }

.dalkong-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 8px; }

/* 웰컴 텍스트 */
.welcome-text-modern {
  flex: 1; }

.welcome-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #ff69b4 0%, #ffb6d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.welcome-greeting {
  font-size: 1.15rem;
  margin: 0 0 8px 0;
  color: #333; }

.welcome-greeting strong {
  color: #ff69b4; }

.welcome-subtitle {
  font-size: 1rem;
  margin: 0;
  color: #666; }

/* 특별한 점 섹션 */
.features-section {
  padding: 32px 40px 40px 40px;
  background: #fafafa; }

.features-section-standalone {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px; }

.features-title {
  margin: 0 0 24px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center; }

.sparkle-icon {
  display: inline-block;
  animation: sparkle 1.5s ease-in-out infinite; }

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1; }
  50% {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.8; } }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px; }

/* 피처 카드 */
.feature-card {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }

.feature-card.feature-green:hover {
  border-color: #4caf50; }

.feature-card.feature-blue:hover {
  border-color: #2196f3; }

.feature-card.feature-orange:hover {
  border-color: #ff9800; }

.feature-card.feature-purple:hover {
  border-color: #9c27b0; }

.feature-card.feature-gradient-1:hover {
  border-color: #667eea; }

.feature-card.feature-gradient-2:hover {
  border-color: #f093fb; }

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px; }

.feature-green .feature-icon {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white; }

.feature-blue .feature-icon {
  background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
  color: white; }

.feature-orange .feature-icon {
  background: linear-gradient(135deg, #ff9800 0%, #ffa726 100%);
  color: white; }

.feature-purple .feature-icon {
  background: linear-gradient(135deg, #9c27b0 0%, #ab47bc 100%);
  color: white; }

.feature-gradient-1 .feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; }

.feature-gradient-2 .feature-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white; }

.feature-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px; }

.feature-desc {
  margin: 0;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.5; }

.feature-desc strong {
  color: #333; }

.features-footer {
  padding: 16px;
  background: white;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: 600; }

.features-footer i {
  color: #e91e63; }

.features-footer strong {
  color: #1b5e20; }

/* Statistics Cards */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px; }

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease; }

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md); }

.stat-card:nth-child(1) {
  animation-delay: 0.1s; }

.stat-card:nth-child(2) {
  animation-delay: 0.2s; }

.stat-card:nth-child(3) {
  animation-delay: 0.3s; }

.stat-card:nth-child(4) {
  animation-delay: 0.4s; }

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; }

.stat-icon i {
  font-size: 2rem;
  color: white; }

.stat-info {
  flex: 1; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px; }

.stat-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500; }

/* Mind Map */
.mindmap-container {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px; }

.mindmap-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px; }

.mindmap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; }

.mindmap-center {
  animation: pulse 2s ease-in-out infinite; }

.center-node {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(13, 94, 71, 0.3);
  display: flex;
  align-items: center;
  gap: 12px; }

.center-node i {
  font-size: 1.5rem; }

.mindmap-branches {
  display: flex;
  gap: 60px; }

.branch-group {
  display: flex;
  flex-direction: column;
  gap: 20px; }

.mind-node {
  background: white;
  border: 3px solid var(--border-color);
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm); }

.mind-node:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md); }

.mind-node.node-guidelines {
  border-color: #ff9800; }

.mind-node.node-guidelines:hover {
  background: #fff3e0;
  border-color: #f57c00; }

.mind-node.node-topic {
  border-color: #2196f3; }

.mind-node.node-topic:hover {
  background: #e3f2fd;
  border-color: #1976d2; }

.mind-node.node-activity {
  border-color: #9c27b0; }

.mind-node.node-activity:hover {
  background: #f3e5f5;
  border-color: #7b1fa2; }

.mind-node.node-ai {
  border-color: #e91e63; }

.mind-node.node-ai:hover {
  background: #fce4ec;
  border-color: #c2185b; }

.mind-node.node-compliance {
  border-color: #4caf50; }

.mind-node.node-compliance:hover {
  background: #fff0f8;
  border-color: #388e3c; }

.mind-node.node-roadmap {
  border-color: #00bcd4; }

.mind-node.node-roadmap:hover {
  background: #e0f7fa;
  border-color: #0097a7; }

.mind-node i {
  font-size: 1.2rem; }

@keyframes pulse {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); } }
/* Recommended Flows (Accordion Style) */
.flows-container {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px; }

.flows-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px; }

.flow-cards {
  display: flex;
  flex-direction: column;
  gap: 16px; }

/* 아코디언 카드 */
.flow-card.accordion-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden; }

.flow-card.accordion-item:hover {
  border-color: var(--primary-green); }

/* 아코디언 헤더 */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fafafa;
  transition: all 0.3s ease;
  user-select: none; }

.accordion-header:hover {
  background: #f0f0f0; }

.accordion-header.active {
  background: linear-gradient(135deg, #fff0f8 0%, #ffd4e5 100%); }

.accordion-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark); }

/* 아코디언 화살표 */
.accordion-arrow {
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease; }

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--primary-green); }

/* 아코디언 콘텐츠 */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px; }

.accordion-content.active {
  max-height: 500px;
  padding: 20px 24px 24px 24px; }

/* Flow Steps */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.flow-step {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease; }

.flow-step:hover {
  background: #fff0f8;
  border-color: var(--primary-green);
  transform: translateX(4px); }

.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0; }

.step-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500; }

.step-btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px; }

.step-btn:hover {
  background: var(--primary-green-dark);
  transform: scale(1.05); }

.flow-arrow {
  text-align: center;
  color: var(--primary-green);
  font-size: 1.2rem;
  margin: 8px 0; }

/* Quick Actions */
.quick-actions-container {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px; }

.quick-actions-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px; }

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; }

.quick-action-btn {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe4f1 100%);
  border: 2px solid #ffc0cb;
  padding: 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center; }

.quick-action-btn:hover {
  border-color: #ff69b4;
  background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3); }

.quick-action-btn i {
  font-size: 2.5rem;
  color: #ff69b4; }

.quick-action-btn span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d63384; }

/* 반응형 디자인 - 빠른 실행 */
@media (max-width: 1024px) {
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .quick-actions-container {
    padding: 25px; }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px; }

  .quick-action-btn {
    padding: 18px; }

  .quick-action-btn i {
    font-size: 2rem; }

  .quick-action-btn span {
    font-size: 0.9rem; } }
@media (max-width: 480px) {
  /* 네비게이션 바 작은 모바일 최적화 */
  .nav-container {
    padding: 0.7rem 1rem; }

  .nav-brand {
    font-size: 1rem;
    gap: 8px; }

  .dalkong-logo {
    width: 36px;
    height: 36px; }

  .user-name {
    font-size: 0.88rem; }

  .btn-logout {
    padding: 6px 10px;
    font-size: 0.8rem; }

  .menu-item {
    padding: 12px 8px;
    font-size: 0.82rem;
    min-width: 75px; }

  .menu-item i {
    font-size: 1.3rem; }

  .quick-actions-container {
    padding: 20px;
    border-radius: 16px; }

  .quick-actions-container h3 {
    font-size: 1.2rem;
    margin-bottom: 18px; }

  .quick-actions-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .quick-action-btn {
    padding: 16px; }

  .quick-action-btn i {
    font-size: 1.8rem; }

  .quick-action-btn span {
    font-size: 0.85rem; } }
/* Timeline */
.timeline-container {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm); }

.timeline-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px; }

.timeline {
  position: relative; }

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 30px;
  border-left: 3px solid var(--border-color); }

.timeline-item:last-child {
  padding-bottom: 0;
  border-left: none; }

.timeline-icon {
  position: absolute;
  left: -13px;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem; }

.timeline-content {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px; }

.timeline-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px; }

.timeline-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 8px; }

.timeline-date {
  font-size: 0.85rem;
  color: var(--text-light); }

/* Responsive Dashboard */
@media (max-width: 1400px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr); }

  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1200px) {
  .flow-cards {
    grid-template-columns: 1fr; }

  .mindmap-branches {
    flex-direction: column;
    gap: 20px; } }
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr; }

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

  .welcome-text h1 {
    font-size: 1.8rem; } }
/* ==================== Modal Styles ==================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease; }

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center; }

.modal-container {
  background: white;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.modal-header {
  padding: 30px;
  border-bottom: 2px solid #ffe4f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white; }

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 12px; }

.modal-header h2 i {
  font-size: 1.6rem; }

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center; }

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg); }

.modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1; }

.modal-body .guideline-alert {
  margin-bottom: 30px; }

.modal-body .guidelines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px; }

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    max-height: 95vh;
    border-radius: 16px 16px 0 0; }

  .modal-header {
    padding: 20px; }

  .modal-header h2 {
    font-size: 1.4rem; }

  .modal-body {
    padding: 20px; } }
/* ==================== NS학생부관리 Styles ==================== */
.ns-tabs {
  display: flex !important;
  /* 강제 표시 */
  background: white;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  position: relative;
  /* 추가 */
  z-index: 10;
  /* 추가 */ }

.ns-tab {
  flex: 1;
  min-width: 140px;
  /* 최소 너비 보장 */
  padding: 14px 20px;
  /* 패딩 증가 */
  border: 2px solid transparent;
  /* 테두리 추가 */
  background: #f8f9fa;
  /* 기본 배경색 */
  color: #666;
  font-weight: 600;
  /* 폰트 굵게 */
  font-size: 0.95rem;
  /* 폰트 크기 */
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex !important;
  /* 강제 표시 */
  align-items: center;
  justify-content: center;
  gap: 8px; }

.ns-tab:hover {
  background: #f5f5f5;
  color: var(--primary-color); }

.ns-tab.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: black;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3); }

.ns-tab i {
  font-size: 1.1rem; }

.ns-tab-content {
  display: none;
  animation: fadeIn 0.3s ease; }

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

.ns-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm); }

.ns-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px; }

.ns-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 15px; }

/* 문서 형식 선택 */
.doc-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px; }

/* 문서 카드 */
.doc-type-card {
  border: 3px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative; }

.doc-type-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15); }

.doc-type-card.selected {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff0f8 0%, #ffe4f1 100%);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.25); }

.doc-type-card.selected::before {
  content: "✓";
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem; }

.doc-type-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0; }

.doc-type-header h4 {
  margin: 12px 0 6px 0;
  font-size: 1.3rem;
  color: var(--text-dark); }

.doc-type-header small {
  color: var(--text-gray);
  font-size: 0.9rem; }

/* 보고서 구성 선택 옵션 */
.doc-structure-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px; }

.structure-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white; }

.structure-option:hover {
  border-color: #2e7d32;
  background: #f1f8f2; }

.structure-option input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #2e7d32; }

.structure-option input[type="radio"]:checked + .structure-label {
  color: #2e7d32;
  font-weight: 600; }

.structure-label {
  display: flex;
  flex-direction: column;
  gap: 4px; }

.structure-label strong {
  font-size: 0.95rem;
  color: var(--text-dark); }

.structure-label small {
  font-size: 0.85rem;
  color: var(--text-gray); }

.doc-features {
  margin-top: 16px; }

.doc-features div {
  margin-bottom: 6px; }

/* 기존 버튼 스타일 (하위 호환) */
.doc-type-btn {
  padding: 24px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white; }

.doc-type-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15); }

.doc-type-btn.selected {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff0f8 0%, #ffe4f1 100%); }

.doc-type-btn i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block; }

.doc-type-btn span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px; }

.doc-type-btn small {
  display: block;
  color: var(--text-gray);
  font-size: 0.85rem; }

/* 참고문헌 아이템 */
.ns-ref-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: start; }

.ns-ref-content {
  flex: 1; }

.ns-ref-content strong {
  color: var(--text-dark); }

.ns-ref-content p {
  margin: 5px 0 0 0;
  color: var(--text-gray);
  font-size: 0.9rem; }

.ns-ref-delete {
  background: #ef5350;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease; }

.ns-ref-delete:hover {
  background: #c62828;
  transform: scale(1.05); }

/* 다운로드 버튼 */
.btn-download {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; }

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4); }

/* 아이콘 중심 다운로드 버튼 */
.btn-download-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: 3px solid #ff69b4;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3); }

.btn-download-icon i {
  font-size: 2.5rem; }

.btn-download-icon .btn-tooltip {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95; }

.btn-download-icon:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.5);
  border-color: #ff1493;
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%); }

/* 완료 버튼 (아이콘) */
.btn-complete-icon {
  background: linear-gradient(135deg, #87ceeb 0%, #6bb6ff 100%);
  color: white;
  border: 3px solid #b0e0e6;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3); }

.btn-complete-icon i {
  font-size: 2.5rem; }

.btn-complete-icon .btn-tooltip {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.95; }

.btn-complete-icon:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 24px rgba(135, 206, 235, 0.5);
  border-color: #4fc3f7;
  background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%); }

.btn-success {
  background: linear-gradient(135deg, #87ceeb 0%, #6bb6ff 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; }

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4); }

/* NS 요약 */
.ns-summary {
  animation: slideIn 0.5s ease; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* 반응형 */
@media (max-width: 1024px) {
  .doc-types {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .ns-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }

  .ns-tab {
    font-size: 0.85rem;
    padding: 10px 15px; }

  .doc-types {
    grid-template-columns: 1fr; }

  .ns-card {
    padding: 20px; } }
/* ==================== 반응형 디자인 (모던 홈 화면) ==================== */
/* 태블릿 (768px ~ 1023px) */
@media (max-width: 1023px) {
  .welcome-content {
    padding: 32px;
    gap: 24px; }

  .dalkong-circle {
    width: 100px;
    height: 100px; }

  .welcome-title {
    font-size: 1.75rem; }

  .welcome-greeting {
    font-size: 1.05rem; }

  .features-section {
    padding: 28px 32px 32px 32px; }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px; }

  .feature-card {
    padding: 20px; }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; } }
/* 모바일 (767px 이하) */
@media (max-width: 767px) {
  /* 네비게이션 바 모바일 최적화 */
  .nav-container {
    padding: 0.9rem 1.5rem; }

  .nav-brand {
    font-size: 1.15rem;
    gap: 10px; }

  .nav-message {
    font-size: 1.1rem; }

  .dalkong-logo {
    width: 48px;
    height: 48px; }

  .user-name {
    font-size: 1rem; }

  .btn-logout {
    padding: 8px 14px;
    font-size: 0.9rem; }

  .menu-item {
    font-size: 0.82rem;
    min-width: 70px;
    padding: 14px 8px;
    margin: 6px 8px; }

  .menu-item i {
    font-size: 1.6rem; }

  .welcome-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 24px; }

  .dalkong-circle-large {
    width: 160px;
    height: 160px; }

  .dalkong-circle {
    width: 110px;
    height: 110px; }

  .dalkong-avatar {
    width: 75px;
    height: 75px; }

  .welcome-title {
    font-size: 1.7rem;
    line-height: 1.4; }

  .welcome-greeting {
    font-size: 1.15rem; }

  .welcome-subtitle {
    font-size: 1.05rem; }

  .features-section {
    padding: 28px 24px 32px 24px; }

  .features-title {
    font-size: 1.5rem;
    margin-bottom: 22px; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px; }

  .feature-card {
    padding: 22px; }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 12px; }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 8px; }

  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.6; }

  .features-footer {
    font-size: 1rem;
    padding: 16px; }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 14px; }

  .stat-card {
    padding: 24px; }

  .stat-icon {
    width: 70px;
    height: 70px; }

  .stat-icon i {
    font-size: 1.8rem; }

  .stat-value {
    font-size: 1.8rem;
    font-weight: 800; }

  .stat-label {
    font-size: 1.05rem; } }
/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.7rem 1rem; }

  .nav-brand {
    font-size: 1rem;
    gap: 8px; }

  .nav-message {
    font-size: 0.95rem; }

  .dalkong-logo {
    width: 42px;
    height: 42px; }

  .welcome-content {
    padding: 24px 18px; }

  .dalkong-circle-large {
    width: 140px;
    height: 140px; }

  .dalkong-circle {
    width: 100px;
    height: 100px; }

  .dalkong-avatar {
    width: 68px;
    height: 68px; }

  .welcome-title {
    font-size: 1.5rem; }

  .welcome-greeting {
    font-size: 1.05rem; }

  .features-section {
    padding: 24px 18px 28px 18px; }

  .features-title {
    font-size: 1.35rem; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .feature-card {
    padding: 20px; }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px; }

  .feature-title {
    font-size: 1.05rem; }

  .feature-desc {
    font-size: 0.92rem; }

  .stat-icon {
    width: 65px;
    height: 65px; }

  .stat-icon i {
    font-size: 1.6rem; }

  .stat-value {
    font-size: 1.7rem; }

  .stat-label {
    font-size: 1rem; }

  .modern-welcome-card {
    border-radius: 16px; } }
/* ==================== 가이드북 모달 스타일 ==================== */
/* 가이드북 전용 버튼 - 홈 버튼과 동일한 스타일 */
.btn-guide-special {
  background: #fff0f5;
  color: #ff69b4;
  border: 2px solid #ffc0cb;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600; }

.btn-guide-special i {
  font-size: 1.1rem; }

.btn-guide-special span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px; }

.btn-guide-special:hover {
  background: #ffc0cb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.4); }

@keyframes bookBounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-5px); } }
/* 기존 가이드 버튼 스타일 제거 */
.btn-guide {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border: 2px solid #ff69b4;
  position: relative; }

.btn-guide:hover {
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4); }

.btn-guide i {
  animation: bookPulse 2s ease-in-out infinite; }

@keyframes bookPulse {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); } }
/* 가이드 모달 배경 */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* 모달 콘텐츠 */
.modal-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease; }

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
/* 모달 헤더 */
.modal-header {
  padding: 25px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.modal-close {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1; }

.modal-close:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg); }

/* 가이드 카드 호버 효과 */
.guide-card-modal {
  cursor: default; }

/* 반응형: 태블릿 */
@media (max-width: 1023px) {
  .modal-content {
    width: 95%;
    max-height: 90vh; }

  .modal-body {
    padding: 30px !important; }

  .guide-cards-grid {
    grid-template-columns: 1fr !important; } }
/* 반응형: 모바일 */
@media (max-width: 767px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px; }

  .modal-header {
    padding: 20px; }

  .modal-header h2 {
    font-size: 1.3rem !important; }

  .modal-body {
    padding: 25px !important; }

  .guide-card-modal {
    padding: 25px !important; }

  .guide-card-modal h3 {
    font-size: 1.3rem !important; }

  .btn-guide-action,
  .btn-guide-download {
    font-size: 0.95rem !important;
    padding: 10px 16px !important; } }
/* 반응형: 소형 모바일 */
@media (max-width: 480px) {
  .btn-guide {
    width: 36px;
    height: 36px;
    font-size: 0.9rem; }

  .modal-header {
    padding: 15px; }

  .modal-header h2 {
    font-size: 1.2rem !important; }

  .modal-body {
    padding: 20px !important; }

  .guide-card-modal {
    padding: 20px !important; }

  .guide-card-modal > div:first-child {
    font-size: 3rem !important; } }

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