.lead-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #fff;
    border: 1px solid #dcdfe4;
    border-radius: 10px;

    padding: 16px;
    margin-bottom: 12px;

    cursor: pointer;
    transition: all 0.2s ease;
}

.lead-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.lead-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-actions {
    display: flex;
    align-items: center;
}

.deleteLead {
    background: #dc2626;
}

.deleteLead:hover {
    background: #b91c1c;
}

.lead-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:24px;
}

.lead-avatar{

    width:90px;
    height:90px;

    border-radius:50%;

    background:#ececec;

    overflow:hidden;

    flex-shrink:0;

}

.lead-avatar img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.lead-header-info{

    flex:1;

}

.lead-name{

    font-size:26px;

    font-weight:700;

}

.lead-subtitle{

    color:#777;

    margin-top:6px;

}