/* 순유입 거래량 리스트 */
.dbl-list {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    margin: 0px 25px;
}

/* 헤더 */
.dbl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid #2a3458;
    align-items: center;
}
.dbl-header-left {
    display: flex;
    align-items: center;
}
.ratio-list-title-logo {
    
}
.ratio-list-title-logo img {
    width: 100px;
    height: 100px;
    border-radius: 0px;
    margin-right: 20px;
}
.dbl-title {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.dbl-sub {
    font-size: 14px;
    color: aqua;
    margin-top: 4px;
}

/* 검색 */
.dbl-search {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #fff;
}
.dbl-search input {
    width: 180px;
    height: 32px;
    padding: 0 10px;
    background: #0f172a;
    border: 1px solid aqua;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    outline: none;
}
.dbl-search input:focus { border-color: #4a5580; }
.dbl-search input::placeholder { color: #4a5580; }
.dbl-search button {
    height: 32px;
    padding: 0 14px;
    background: #0a37da;
    border: 1px solid #0a37da;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}
.dbl-search button:hover { background: #3a4568; }

/* ── 퀵카드 ── */
.dbl-quick {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #2a3458;
    padding-bottom: 20px;
}
.dbl-qcard {
    display: block;
    background: #040b1b;
    border: 1px solid #4f609c;
    border-radius: 4px;
    padding: 12px;
    text-decoration: none;
    transition: border-color 0.2s;
}
.dbl-qcard:hover { border-color: aqua; }
.dbl-qcard-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.dbl-qlogo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 5px;
}
.dbl-qsym {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-top: -7px;
}
.dbl-qname {
    font-size: 14px;
    color: #d5dff3;
    margin-left: 4px;
}
.dbl-qdata {
    border-top: 1px solid #2a3458;
    padding-top: 8px;
}
.mc-wrap.mc-quick {
    height: 70px;
    margin-bottom: 10px;
}
.dbl-qrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}
.dbl-qlbl {
    font-size: 11px;
    color: #6b7280;
}
.dbl-qval {
    font-size: 11px;
    color: #d1d5db;
    font-family: monospace;
}
.dbl-qval.up { color: #10b981; }
.dbl-qval.down { color: #f43f5e; }

/* ── 카드 그리드 ── */
.dbl-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.dbl-card {
    display: block;
    background: #1a1f3a;
    border: 1px solid #2a3458;
    border-radius: 4px;
    padding: 12px;
    text-decoration: none;
    transition: border-color 0.2s;
}
.dbl-card:hover { border-color: #4a5580; }

/* ── 미니차트 ── */
.mc-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100px;
    gap: 1px;
}
.mc-center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #2a3458;
    z-index: 1;
}
.mc-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.mc-col.mc-big {
    flex: 2.5;
    margin-right: 3px;
}
.mc-col.mc-sm {
    flex: 1;
}
.mc-top {
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.mc-bot {
    height: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.mc-bid {
    width: 100%;
    background: #10b981;
    border-radius: 2px 2px 0 0;
    min-height: 0;
}
.mc-ask {
    width: 100%;
    background: #f43f5e;
    border-radius: 0 0 2px 2px;
    min-height: 0;
}
.mc-big .mc-bid { background: #10b981; }
.mc-big .mc-ask { background: #fd4c69; }
.mc-sm .mc-bid { background: rgba(56,189,248,0.55); }
.mc-sm .mc-ask { background: rgba(244,63,94,0.4); }

/* 코인 정보 */
.dbl-coin {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #2a3458;
}
.dbl-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.dbl-sym {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.dbl-name {
    font-size: 12px;
    color: #b5c3df;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── 페이징 ── */
.dbl-paging {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    padding: 16px 0;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: #1a1f3a;
    border: 1px solid #2a3458;
    border-radius: 4px;
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.pg-btn:hover {
    background: #2a3458;
    color: #fff;
}
.pg-btn.active {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
    font-weight: 700;
}