/* =================================
   Manual Lineup Editor
================================= */
.batting-order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.batting-order-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    cursor: grab;
    font-weight: 600;
}

.batting-order-item.dragging { opacity: 0.45; }
.drag-handle { font-weight: 900; color: #6b7280; touch-action: none; cursor: grab; }

.batting-order-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.batting-order-name { flex: 1; }
.mobile-lineup-editor { display: none; }
