.dx-logs-panel {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 60%;
    background: rgba(10,10,10,.97);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    padding: 20px;
    gap: 20px;
    transition: bottom .35s ease;
    z-index: 9999;
}

.dx-logs-panel.open {
    bottom: 0;
}

.dx-col {
    flex: 1;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    padding: 10px;
    overflow-y: auto;
}

.dx-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dx-close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.dx-log-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.dx-log-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.dx-log-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.dx-log-time {
    color: #777;
    font-size: 11px;
}

.dx-log-line,
.dx-kill-line {
    color: #ccc;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
