/* Styles pour les flèches de tri */
.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.sortable-header small {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.sortable-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sort-icon {
    margin-left: 3px;
    font-size: 9px;
    color: #d4af37; /* Couleur dorée */
    opacity: 0.7;
    transition: all 0.2s ease;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1;
}

.sortable-header:hover .sort-icon {
    opacity: 1;
}

.sort-icon.fa-sort-up,
.sort-icon.fa-sort-down {
    opacity: 1;
    color: #d4af37;
}

/* Animation pour les lots */
.lot-item {
    transition: all 0.3s ease;
}

.lot-item.sorting {
    opacity: 0.7;
} 