/* layout.css */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 30px auto;
}

.main-content {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #d5d5d5;
    border-radius: 16px;
}

/* 모달 시스템 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    width: 450px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 설정(settingGUI) 내부 요소 */
.profile-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
}

.list-item {
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    background: #f9f9f9;
    margin-bottom: 8px;
    border: 1px solid #f0f0f0;
}

.list-item:hover {
    transform: translateX(5px);
    background: #eee;
}