* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Malgun Gothic', sans-serif;
    min-height: 100vh;
}

.Menu_Title {
    display: flex;
    background: #040b1b;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #5d6488;
}
.Menu_Img {
    display: flex;
    align-items: center;
    
}
.Menu_Img img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}
.Menu_Name {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}

/* ===== 헤더 ===== */
h1 {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #5d6488;
    background: #09173a;
    padding: 10px;
}

h1 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
h1 span {
    font-size: 16px;
    font-weight: bold;
}
h1 label {
    font-size: 13px;
    font-weight: normal;
    color: #94a3b8;
}

/* ===== 리스트 ===== */
.tl_search_wrap {
    background: #1a284b;
    padding: 10px;
    border-bottom: 1px solid #5d6488;
}
.tl_search_wrap input {
    width: 100%;
    padding: 8px;
    border: 1px solid #5d6488;
    border-radius: 4px;
    background: #040b1b;
    color: #e2e8f0;
}
.Coin_List {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-bottom: 1px solid #45485a;
}
.Coin_List:hover {
    background: #040b1b;
}
.Coin_List img {
    margin-right: 20px;
    width: 32px;
    height: 32px;
}
.tl_symbol {
    font-size: 16px;
    font-weight: bold;
    color: #94a3b8;
}
.tl_name {
    font-size: 13px;
    font-weight: bold;
    color: #e2e8f0;
}

.page_bottom {
    font-size:45px;
}