.ddl-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ddl-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.ddl-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.ddl-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ddl-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ddl-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.8;
}

.ddl-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    line-height: 1.7;
}

.ddl-payment {
    margin-top: 2px;
    font-size: 12px;
    color: #475569;
    font-weight: 700;
    line-height: 1.8;
}

.ddl-payment span {
    color: #0f172a;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.ddl-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.ddl-btn {
    min-width: 108px;
    height: 34px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ddl-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.ddl-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ddl-btn.primary {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.ddl-btn.primary:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
}
