body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

#example-input {
  margin-bottom: 20px;
  width: 800px;
}

.canvas-container {
  display: flex;
  justify-content: center;
}

input {
  width: 200px;
  padding: 5px;
  margin-bottom: 10px;
}

canvas {
  border: 1px solid #ccc;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

button[type="submit"],
.copy-json {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
}

button[type="submit"]:hover,
.copy-json:hover {
  background-color: #45a049;
}

.input-container .copy-json {
  right: 10px;
  position: absolute;
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.input-container .copy-json:hover {
  background-color: #45a049;
}

.input-container label {
  margin-right: 10px;
  font-weight: bold;
}

/* For index.html */

.main-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.smiles-drawer,
.rd-kit {
  background-color: #4caf50;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.smiles-drawer:hover,
.rd-kit:hover {
  background-color: #45a049;
}

.smiles-drawer-href,
.rd-kit-href {
  color: white;
  text-decoration: none;
}

.smiles-drawer-href:hover,
.rd-kit-href:hover {
  text-decoration: underline;
}
