* {
	margin:0px;
	padding:0px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
	background: #1c1c1c;
}

.container {
  display: grid;
  padding:64px;
}

.card {
  border-radius: 10px;
  width: 300px;
  background-color: #f5f5f5;
}

.card-header {
  padding: 20px 25px 15px;
  font-size: 0.8rem;
  background-color: rgb(43, 73, 243);
  border-radius: 10px 10px 0 0;
  color: white;
}

.card-content {
  padding: 0px;
  max-height: 350px;
  overflow-y: auto;
}

.contact:hover {
	background-color:#fff;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1.25rem;
  padding: 0.5rem 0;
  cursor:pointer;
}

.profile-image {
	margin-left:16px;
	width: 3rem;
	border-radius: 100%;
}

.contact .names {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-items: center;
}

.contact .names .status {
  color: #333333;
  font-size: 0.7rem;
  font-weight: 600;
}

#dialog p {
	padding-top:8px;
}

#dialog input {
	width:100%;
}

#add {
	float:right; 
	width:32px; 
	filter: invert(1); 
	margin-top:-4px; 
	margin-right:-8px; 
	cursor:pointer;
}

button.red {
	color:#B60000 !important;
	border-color:#980000 !important;
	background-color:#F1C5C7 !important;
}