body { margin: 0px; padding: 0px; }
.Short_Volume_Box {
    background: #1a1f3a;
    border: 1px solid #2a3458;
    border-top: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    padding-top: 0px;
}
#depth-wrap {
    background: #070d14;
    border: 1px solid #1a2535;
    border-top: 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 14px;
    font-family: 'Consolas', monospace;
    user-select: none;
}
#depth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.depth-title {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
.depth-status {
    font-size: 11px;
    color: #f59e0b;
    letter-spacing: 1px;
}
.depth-status.live { color: #10b981; }

#depth-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.summary-long, .summary-short {
    display: flex;
    align-items: center;
    gap: 8px;
}
.summary-label {
    font-size: 11px;
    color: #475569;
    letter-spacing: 1px;
}
.summary-pct {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.summary-pct.long { color: #22c55e; }
.summary-pct.short { color: #f43f5e; }
.summary-divider { color: #1e293b; font-size: 20px; }

#depth-chart {
    display: flex;
    align-items: flex-end;
    height: 80px;
    gap: 2px;
    position: relative;
    overflow: hidden;
}
#col-long, #col-short {
    display: flex;
    align-items: flex-end;
    gap: 1px;
    flex: 1;
}
#col-long { justify-content: flex-end; }
#col-short { justify-content: flex-start; }

#center-line {
    width: 1px;
    height: 100%;
    background: #1e293b;
    flex-shrink: 0;
}

.bar-long {
    width: 100%;
    background: #22c55e;
    border-radius: 2px 2px 0 0;
    transition: height 0.15s ease;
    min-height: 1px;
    opacity: 0.85;
}
.bar-short {
    width: 100%;
    background: #f43f5e;
    border-radius: 2px 2px 0 0;
    transition: height 0.15s ease;
    min-height: 1px;
    opacity: 0.85;
}
.bar-long:hover { opacity: 1; background: #4ade80; }
.bar-short:hover { opacity: 1; background: #fb7185; }

#depth-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.footer-label {
    font-size: 10px;
    letter-spacing: 0.5px;
}
.footer-label.long { color: #22c55e; opacity: 0.6; }
.footer-label.short { color: #f43f5e; opacity: 0.6; }
.footer-price {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
}