.assignedClient-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;

}

.assignedClient-card {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  height: fit-content;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 15px 15px 15px 0px rgba(84, 84, 84, 0.3);
  cursor: pointer;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px 0;
}

.card-header-client-detail{
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 15px;
}


.client-avatar-card {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.client-img{
  width: 20px;
  border-radius: 50%;
  margin: 10px 5px 0;
}

.client-info-card {
  display: flex;
  flex-direction: column;
}

.data-value-client {
  font-weight: 700;
  font-size: 14px;
}

.data-value-client-b{ 
  font-size: 12px;
    color: rgb(82, 82, 82);
}

.dpd-value {
  background-color: #ce2a14;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 15px;
  color : white;
  font-weight: bold;
}

.debt-item-card{
  display: flex;
  justify-content: space-between;
}

.debt-label-card{
  font-size: 12px;
}

.debt-value-card{
  font-weight: 700;
  font-size: 15px;
}

.data-row-b{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.data-label-card{
  font-size: 10px;
  color: rgb(82, 82, 82);
}

.data-value-card{
  font-size: 12px;
  color: rgb(82, 82, 82);
}

.icon-client-cards{
  font-size: 12px;
}