/* 전체 컨테이너 애니메이션 */
.Animation {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px; /* 요소들 사이의 간격 */
}

/* 1. 상단 프로필 영역 (이미지 + 설정/로그아웃 바) */
.profile-header-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-circle {
    width: 80px;
    height: 80px;
    background-color: #eee;
    border-radius: 50%; /* 원형 */
    overflow: hidden;
    flex-shrink: 0;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 설정, 로그아웃 버튼 그룹 */
.short-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings, .logout {
    height: 35px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px; /* 모서리 둥글게 */
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: background 0.2s;
}

.settings:hover, .logout:hover {
    background-color: #f9f9f9;
}

/* 2. 중간 긴 바 */
.bar.long {
    width: 100%;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    box-sizing: border-box;
}

/* 3. 하단 리스트 컨테이너 (큰 박스) */
.list-container {
    width: 100%;
    background-color: #f1f1f1; /* 도식화의 회색 배경 느낌 */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.list-row {
    height: 60px; /* 도식화처럼 큼직하게 */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

.list-row:hover {
    transform: translateX(5px);
    border-color: #4A90E2;
}

/* 4. 닫기 버튼 */
.close-btn {
    margin-top: 10px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background-color: #666;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    background-color: #444;
}