
    /* 기본 레이아웃 */
body{margin:0;
    font-family:sans-serif;
    }

.desc {
  font-size: 0.8em;
  color: #888;
  padding:5px 0;
    margin-top: 2em;
    margin-bottom: 1em;
}

#header {
    display: flex;
    /* justify-content: flex-end; /* 프로필 이미지를 오른쪽으로 정렬 */ */
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    position: relative; /* 팝업 메뉴 위치 설정을 위해 */
}

.profile_image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

    /* 팝업 메뉴 */
    .profile_menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        overflow: hidden;
        z-index: 1;
    }

    .profile_menu a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }

    .profile_menu a:hover {
        background-color: #f1f1f1;
    }


.nav-buttons {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
    margin:0 auto;
}

.nav-buttons li {
  width: 100%;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-decoration: none;
  color: #3b95d5;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-button:hover {
  background-color: #f8f9fa;
  border-color: #3b95d5;
}

.nav-button:active {
  background-color: #f0f0f0;
}

.nav-button.disabled {
  background-color: #f8f9fa;
  color: #aaa;
  cursor: default;
  pointer-events: none;
  border-color: #e0e0e0;
}

/* 선택적: 버튼 내부의 텍스트 정렬을 위한 스타일 */
.nav-button span {
  text-align: center;
}