
.sortable-team-list {
    margin: 20px 0;
    width: 100%;
}

.sortable-team-list li {
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    cursor: move;
    display: flex;
    align-items: center;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sortable-team-list li:hover {
    background: #f9f9f9;
}

.sortable-team-list li.featured {
    background: #f0f9ff;
    border-left: 4px solid #2271b1;
}

/* Draft item styling */
.sortable-team-list li.draft {
    background: #f7f7f7;
    border-style: dashed;
    opacity: 0.8;
    cursor: default;
}

/* New item styling with proper yellow background */
.sortable-team-list li.new-post {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.new-badge {
    display: inline-block;
    background: #ffc107;
    color: #212529;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: normal;
}

.draft-badge {
    display: inline-block;
    background: #dc3232;
    color: white;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: normal;
}

.team-member-image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
}

.team-member-image img {
    width: 100%;
    height: auto;
}

.team-member-title {
    flex-grow: 1;
    font-weight: 600;
}

.featured-toggle {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 3px;
}

.featured-toggle:hover {
    background: #e0e0e0;
}

li.featured .featured-toggle {
    background: #2271b1;
    color: white;
    border-color: #135e96;
}

li.draft .featured-toggle {
    opacity: 0.5;
    cursor: not-allowed;
}

.ui-sortable-helper {
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.team-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team-order-actions {
    display: flex;
    gap: 10px;
}

#save-result {
    margin-top: 15px;
}

.team-order-instructions {
    background: #fff;
    border-left: 4px solid #2271b1;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    margin: 20px 0;
    padding: 15px;
}