body {
	font-size: 16px;
  font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.table-heading {
	background-color: #262626;
}

h4 {
	color: white !important;
}

.btnUpdate:hover {
	background-color: gray;
	color: white;
}

#dropdown-container {
	position: relative;
  display: inline-block;
	margin-bottom: 5px;
}

#searchInput {
	background-color: black;
  color: white;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
}

.button {
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.button:hover {
  background-color: gray;
}

.button-container {
  display: flex;
  align-items: center;
}