.layer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layer-item {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    border-radius: 6px;
    width: 300px;
}

.layer-item.dragging {
    opacity: 0.5;
    border: 2px dashed #28a745;
    background: #f0fdf4;
}

.drag-handle {
    margin-right: 15px;
    color: #999;
    font-size: 18px;
    cursor: grab;
    user-select: none;
}

.drag-handle:active {
    cursor: grabbing;
}

.layer-name {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
}

.layer-actions {
    display: flex;
    gap: 8px;
}

/* Slider */

/* Resetando a aparência padrão */
.slider-opacidade {
    -webkit-appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: opacity .2s;
}

/* Estilizando a "bolinha" (Thumb) - Chrome, Edge e Safari */
.slider-opacidade::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #00763d;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Estilizando a "bolinha" - Firefox */
.slider-opacidade::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #00763d;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Efeito ao passar o mouse */
.slider-opacidade:hover {
    background: #ccc;
}

.slider-opacidade:active::-webkit-slider-thumb {
    transform: scale(1.2);
    background: #00763d;
}