/*  */
#workArea #contacts {
  min-width: 283px;
  height: calc(100% - 66px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid #d9d9d9;
  background-color: #fff;
  overflow-y: auto;
}

#contacts #contactsList {
  /* overflow-y: auto; */
  padding: 0 0.5em;
  /* height: 100%; */
}

#contacts #contactsContainer {
  overflow-y: auto;
  height: 100%;
}

#contacts .contact {
  height: 60px;
  display: flex;
  padding: 1em;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;

  /*        border-bottom: 1px solid #F2F2F2;*/
}

.formHeading{
  font-size: 1.2em;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.5em 0;
  color: #9e9e9e;
  font-weight : 500;
}

.borderBottom{
  height : 1px; 
  background-color : #f2f2f2;
  margin : 10px 0px;
}



/* form fields */

h1 {
  font-size: 1.5em;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid #9e9e9e;
  padding: 1em 0;
  color: #9e9e9e;
}


#profile-info, #content {
  display: flex;
  flex-direction: column;
  padding: 1em;
  row-gap: 1em;
  min-width: 500px;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #607d8b;
  font-weight: 500;
  padding: 1em 0 0;
}
input[type=text], input[type=email], input[type=password],input[type=time],input[type=checkbox] ,select, textarea{
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin : 0.5em 0;
}

.details {
  font-size: 20;
  color: #011d2a;
  font-weight: 100;
  display: flex;
  flex-direction: column;
}
  .details .detailTags {
      font-size: 12px;
      color: #607d8b;
      font-weight: 500;
  }
form button {
  padding: 0.7em;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  color: #fff;
  background-color: #2196f3;
  width: 100%;
  margin: 1em 0;
}
#passwordValidationMessage {
  font-size: 12px;
  color: red;
}

.deleteButton{
  padding: 0.7em;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  color: #fff;
  background-color: #2196f3;
  width: 100%;
  margin: 1em 0;
}

#workArea  {
  margin-bottom: 80px;
}


#submitButton {
  background-color: #2196f3;
}


/* additional Data */

.list{
  display: flex;
  flex-direction: column;
  
}

.draggable{
  display:flex;
  flex-direction: column;
  cursor: pointer;
  
  justify-content: space-between;
  padding: 15px;
  
  flex:1
  
}




