body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: black;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  padding: 10px 14px;
  background-color: black; /* pink → black */
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  outline: none; /* outline remove */
}

button:hover {
  background-color: #333; /* hover ka dark black */
}

.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: black; /* pink → black */
  outline: none; /* outline remove */
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black; /* pink → black */
  color: white;
  padding: 8px 10px;
  font-weight: bold;
}

.editor-tools i {
  margin-left: 10px;
  cursor: pointer;
  color: black;
}

#html-input,
#output {
  height: 400px;
  color: black;
  outline: none; /* outline remove */
}

* {
  color: black;
  outline: none; /* outline remove globally */
}
