body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background: #f7f7f7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  background: #fff0f5;
  padding: 0 32px;
  box-shadow: 0 2px 6px rgba(255, 79, 160, 0.08);
}

.navbar-right button {
  background-color: #ff4fa0;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.navbar-right button:hover {
  background-color: #e03b88;
}

#status {
  color: #777;
  font-size: 14px;
  margin-left: 10px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.back-arrow {
  font-size: 22px;
  color: #ff4fa0;
  margin-right: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.back-arrow:hover {
  transform: translateX(-2px);
}

.logo {
  font-weight: bold;
  color: #ff4fa0;
  font-size: 20px;
  background: #faeff3;
  padding: 6px 14px;
  border-radius: 8px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-right a {
  color: #ff4fa0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 12px;
  background-color: #fff5fa;
  border-radius: 20px;
  transition: background-color 0.2s;
}

.navbar-right a:hover {
  background-color: #ffd9eb;
}

.navbar-right .logout-button {
  all: unset;
  color: #ffffff;
  background-color: #ff4fa0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(255, 79, 160, 0.15);
  transition: background-color 0.2s;
}

.navbar-right .logout-button:hover {
  background-color: #e03b88;
}

.profile-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('https://cdn-icons-png.flaticon.com/512/3135/3135715.png') no-repeat center/cover;
  border-radius: 50%;
  margin-left: 8px;
  border: 2px solid #fff0fa;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
}