body {
    background: #0f172a;
    color: #fff;
    margin: 0px;
    padding: 0px;
}
#SETTING {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.setting {
    display: flex;
    flex-direction: column;
}











#Setting_Menu {
    position: fixed;       /* 화면에 고정 */
    bottom: 0;             /* 하단에 붙임 */
    left: 0;               /* 왼쪽 정렬 */
    width: 100%;           /* 가로 폭 100% */
    height: 55px;         /* 높이 110px */
    z-index: 9999;         /* 다른 요소들보다 위로 표시 */
    background-color: #020824; /* 배경색이 투명할 경우 설정 필요 */
    border-top: 2px solid #3c4a7a; /* 상단에 선 추가 */
}
.Menu {
    display: flex;              /* 메뉴 항목들을 가로로 배치 */
    justify-content: center;    /* 메뉴 항목들을 중앙 정렬 */
    align-items: center;        /* 메뉴 항목들을 수직 중앙 정렬 */
    height: 100%;               /* 메뉴 항목이 메뉴 바 전체 높이를 차지하도록 설정 */
    padding-right: 10px;
    gap: 10px;                 /* 메뉴 항목 사이의 간격 */
}
.Menu a {
    flex: 1;
}
.Menu button {
    width: 100%;
    background: #081450;
    border: 1px solid #394ca0;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin: 0px 5px;
    padding: 10px 0px;
    transition: background 0.7s;
}
.Menu button:hover {
    background: #4466ff;
}
















/* 토글 스위치 */
.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #2a3458;
}
.toggle-wrap.master {
    background: #111630;
    border-bottom: 2px solid #3c4a7a;
}
.toggle-wrap.sub {
    padding-left: 36px;
    background: #0a0d1a;
}
.toggle-wrap.sub.disabled {
    opacity: 0.35;
    pointer-events: none;
}
.toggle-label {
    font-size: 14px;
    color: #cdd4f0;
    font-family: 'Share Tech Mono', monospace;
}
.toggle-wrap.master .toggle-label {
    font-size: 15px;
    color: #ffffff;
    font-weight: bold;
}
.toggle-switch {
    position: relative;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #2a3458;
    border-radius: 26px;
    transition: 0.3s;
}
.toggle-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: #6b7aaa;
    border-radius: 50%;
    transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
    background: #1b44ff;
}
.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
    background: #fff;
}