body {
  color: #333;
  background-color: #f0f2f5;
  margin: 0;
  padding: 20px;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  color: #fff;
  background-color: #2c3e50;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0 4px 6px #0000001a;
}

main {
  background-color: #fff;
  border-radius: 8px;
  max-width: 960px;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0 4px 12px #0000001a;
}

section {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

h2 {
  color: #34495e;
  border-bottom: 2px solid #34495e;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

#editor-controls {
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

#editor-controls button {
  color: #fff;
  cursor: pointer;
  background-color: #3498db;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background-color .2s;
}

#editor-controls button:hover:not([disabled]) {
  background-color: #2980b9;
}

#editor-controls button[disabled] {
  cursor: not-allowed;
  background-color: #ccc;
}

#text-editor {
  resize: vertical;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  height: 400px;
  padding: 15px;
  font-family: monospace;
  font-size: 1rem;
}

#version-list {
  padding: 0;
  list-style: none;
}

#version-list li {
  background-color: #ecf0f1;
  border: 1px solid #ddd;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px 15px;
  display: flex;
}

#version-list li .version-info {
  flex-grow: 1;
}

#version-list li button {
  color: #fff;
  cursor: pointer;
  background-color: #2ecc71;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: .9rem;
  transition: background-color .2s;
}

#version-list li button:hover {
  background-color: #27ae60;
}

@media (width <= 600px) {
  #editor-controls {
    flex-wrap: wrap;
  }

  #editor-controls button {
    flex-grow: 1;
  }
}
/*# sourceMappingURL=collaborative-editor.3a01df49.css.map */
