/* ============================
   📌 user Layout 기본 틀 스타일
   ============================ */
.user_layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--color-background);
}

.top-header {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;  /* 양쪽 정렬 */
    align-items: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* 로고는 그대로 왼쪽 */
.header-logo {
    margin-right: 30px;
}

/* 메뉴는 왼쪽 정렬 (로고 옆에) */
.header-menu {
    display: flex;
    justify-content: flex-start; /* 왼쪽 정렬 */
    flex: 1;                     /* 로고 오른쪽 공간 전체 차지 */
}

.menu-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* 사용자 정보는 오른쪽 끝 */
.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}


.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}


.main-content {
    flex: 1;
    max-width: 1440px;  /* 추가 */
    width: 100%;        /* 필수 */
    margin: 0 auto;     /* 중앙 정렬 */
}

.bottom-footer {
    padding: 15px 20px;
    background: #f5f5f5;
    margin-top: 20px;

}


.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;  /* 추가 */
    width: 100%;        /* 필수 */
    margin: 0 auto;     /* 중앙 정렬 */
}

/* ============================
   user_contents_area
   ============================ */

.user_contents_box {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}