* { 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;
}
.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;
    margin: 0px 0px 10px 0px;
}

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;
}

.page_header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #040b1b;
    border: 1px solid #5d6488;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px;
}

.coin_logo { width: 40px; height: 40px; border-radius: 50%; }
.coin_title { font-size: 1.3rem; font-weight: 700; color: #f1f5f9; }
.coin_symbol { font-size: 0.85rem; color: #64748b; margin-top: 2px; }

