#dd-crm-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    padding-bottom: 50px;
}

.dd-crm-column {
    flex: 1;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 250px;
    transition: transform 0.3s ease;
    position: relative;
}

.dd-crm-column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dd-crm-drag-icon {
    cursor: move;
    font-size: 24px;
    color: #555;
    transition: transform 0.2s;
    z-index: 10; /* Garante que o ícone fique acima dos outros elementos */
}

.dd-crm-column:hover .dd-crm-drag-icon {
    color: #333;
    transform: scale(1.1);
}

.dd-crm-column h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
}

.dd-crm-leads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100px;
    padding: 10px;
}

.dd-crm-lead-item {
    position: relative;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dd-crm-lead-item p {
    margin: 0 0 5px; /* Ajustando o espaçamento entre os parágrafos */
    font-size: 14px;
    color: #555;
}

.dd-crm-lead-item p:last-child {
    margin-bottom: 0; /* Removendo o espaçamento inferior do último item */
}

.dd-crm-lead-item:active {
    cursor: grabbing;
    background: #ececec;
}

.dd-crm-placeholder {
    background-color: #ececec;
    border: 1px dashed #bbb;
    height: 60px;
}

.no-leads {
    font-size: 14px;
    color: #999;
    text-align: center;
    padding: 10px;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: 6px;
}

.dd-crm-edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px; /* Tamanho do ícone */
    color: #555;
    text-decoration: none;
    background: #f1f1f1;
    border-radius: 100%; /* Tornar o fundo 100% redondo */
    padding: 8px; /* Ajuste o padding para garantir que o ícone tenha o tamanho correto */
    transition: background 0.3s ease, color 0.3s ease;
}

.dd-crm-edit-icon:hover {
    background: #ddd;
    color: #333;
}


.dd-crm-lead-content {
    margin-top: 10px;
}
