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

body {
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f5f5f5;
}

.wiki-layout {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  align-items: flex-start;
}

.sidebar {
  flex: 0 0 220px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  position: sticky;
  top: 1.5rem;
}

.sidebar .site-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3b82f6;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.sidebar h3 {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 1rem;
}

.sidebar li {
  margin-bottom: 0.35rem;
}

.sidebar a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.95rem;
}

.sidebar a:hover {
  color: #3b82f6;
}

.sidebar a.current {
  color: #3b82f6;
  font-weight: bold;
}

.content {
  flex: 1;
  min-width: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.content h1 {
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.content .subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.content h2 {
  color: #3b82f6;
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.content h3 {
  color: #4b5563;
  margin: 1.5rem 0 0.75rem;
}

.content p {
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: #3b82f6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

th {
  background-color: #f0f9ff;
}

.tip {
  background-color: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  margin-bottom: 1rem;
}

.warning {
  background-color: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 1rem;
  margin-bottom: 1rem;
}

.image-container {
  text-align: center;
  margin: 1.5rem 0;
}

.screenshot {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.image-caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 768px) {
  .wiki-layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    position: static;
  }
}
