/* ANA KUTU TASARIMI */
.dd-handle {
    display: flex;
    align-items: center;
    height: 45px;
    margin: 8px 0;
    padding: 0 15px;
    color: #5a5c69;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #e3e6f0;
    background: #f8f9fc; /* Admin paneli arka planıyla uyumlu */
    border-radius: .35rem;
    box-sizing: border-box;
    cursor: default; /* Tüm alana değil, sadece ikona tıklandığında sürükleme */
}
.dd-handle:hover {
    background: #fff;
    border-color: #d1d3e2;
}
.dd-handle-grab {
    cursor: move; /* Sadece bu ikona fare gelince taşıma imleci çıksın */
    font-size: 16px;
}

/* BUTON GRUBU YERLEŞİMİ */
.dd-handle .item-title {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dd-handle .item-actions {
    display: flex;
    align-items: center;
    margin-left: auto; /* Butonları sağa yasla */
}
.item-actions .btn {
    padding: .25rem .5rem;
    font-size: .8rem;
    line-height: 1.5;
}