/* Estilos para a lista de itens do roteiro no modal */
.sequencia-wrapper {
    margin-top: 1rem;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    background: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.roteiro-items-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for roteiro-items-list */
.roteiro-items-list::-webkit-scrollbar {
    width: 8px;
}

.roteiro-items-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.roteiro-items-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.roteiro-items-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.drag-item {
    display: grid;
    grid-template-columns: 40px 40px auto 1fr 50px;
    align-items: center;
    background: #ffffff;
    padding: 0.75rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.drag-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.drag-item .capa {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 10px;
}

.drag-item .numero {
    font-weight: bold;
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.drag-item .tipo {
    font-weight: 500;
    color: #36a2dc;
    padding: 0 5px;
}

.drag-item .tipo[title="atividade"] {
    color: #f3ab40;
}

.drag-item .titulo {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}