#header, #footer {
  text-align: center;
  color: black;
}

#editor-container {
  width: 100%;
  max-width: 100%;
  background:  #F0F0F1;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;

}

#toolbar {
  background: #fff;
  color: #000;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	margin: 20px;
}



#editor {
	background-color: #fff;
margin: 20px;
  padding: 20px;
  height: 400px;
  overflow-y: auto;
  border-top: 1px solid #333;
  font-size: 16px;
  line-height: 1.6;
}

#editor:focus {
  outline: none;
  color: black;
}

#toolbar select, #toolbar input, #toolbar button {
  margin: 5px;
  padding: 5px;
  font-size: 16px;
}

#toolbar select {
  border: 1px solid #ccc;
  border-radius: 4px;
}

#toolbar input[type="number"], #toolbar input[type="color"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
}

#toolbar button {
  background: #F0F0F1 ;
  
  color: black;
  font-size: 16px;
  margin: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

#toolbar button:hover {
  border: 2px solid black;
}

