
h1 {
  text-align: center;
  padding: 20px;
  margin: 0;
  font-size: 2rem;
  color: #444;
}


.editor-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 40ch;
}

 
.editor {
  height: 400px;
  border: 1px solid #aa7512;
}

.center-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.center-panel button {
  background: #DE9406;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.center-panel button:hover {
  background: #aa7512;
}

.message {
  color: green;
  font-weight: bold;
  text-align: center;
  max-width: 150px;
  margin: 0 auto;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.editor-header {
  background: #444;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.delete-btn svg {
  fill: white;
  transition: 0.3s;
}
.delete-btn:hover svg {
  fill: #ff4d4d;
}
.delete-btn svg {
  fill: white;
  transition: 0.3s;
}
