* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", sans-serif;
  color: #111;
}

/* ===== Header ===== */
.header {
  border-bottom: 1px solid #f0f0f0;
  background: white;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 로고 스타일 (고정) */
.logo a {
  text-decoration: none;
  color: #009b63;
  font-size: 28px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.logo a:hover { opacity: 0.8; }

/* 네비게이션 메뉴 */
.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.nav a:hover {
  color: #009b63;
}

/* 로그인 버튼 */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background-color: #059669;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-btn:hover {
  background-color: #047857;
  text-decoration: none !important;
}

.login-btn span {
  text-decoration: none !important;
}

.login-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* 로그아웃 버튼*/
.logout-btn {
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.logout-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* 사용자 정보 영역 */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

.profile-link:hover {
  color: #009b63;
}

footer {
  margin-top: 120px;
  padding: 40px 0;
  text-align: center;
  color: #999;
  border-top: 1px solid #eee;
}

main {
  min-height: calc(100vh - 160px);
}