body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #be0c6c;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #be0c6c;
  text-align: center;
  margin-bottom: 20px;
}

.buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  padding: 10px 14px;
  background-color: #be0c6c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #920950;
}

.editor-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.editor-box {
  flex: 1;
  min-width: 48%;
  position: relative;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.editor-box:hover,
.editor-box:focus-within {
  border-color: #be0c6c;
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #be0c6c;
  color: white;
  padding: 8px 10px;
  font-weight: bold;
}

.editor-tools i {
  margin-left: 10px;
  cursor: pointer;
}

#html-input, #output {
  height: 400px;
}
