.goalie-cap { 
    box-shadow: 0 0 0 4px #ef4444 !important; 
    z-index: 10;
}
.no-select { user-select: none; -webkit-user-select: none; }
body { overscroll-behavior-y: contain; }
#action-log-list { scroll-behavior: smooth; }
/* New drag and drop styles */
.draggable-row { cursor: grab; transition: transform 0.2s ease; }
.draggable-row:active { cursor: grabbing; }
.dragging { opacity: 0.5; transform: scale(0.98); }
.drag-over { border-top: 2px solid #3b82f6; background-color: #f0f9ff; }
.sortable-header { cursor: pointer; user-select: none; }
.sortable-header:hover { background-color: #f3f4f6; }
/* Drag and drop for actions */
.draggable-action {
    cursor: grab;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.draggable-action:active {
    cursor: grabbing;
}
/* Ensure smooth scrolling and proper container sizing */
#action-log-list {
    scroll-behavior: smooth;
    min-height: 0; /* Important for flex children to scroll properly */
}

/* Style scrollbar */
#action-log-list::-webkit-scrollbar {
    width: 6px;
}

#action-log-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#action-log-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
#action-log-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}