.pc-container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.pc-container h2 {
  margin-bottom: 20px;
}

#pc-operation,
#pc-value1,
#pc-value2 {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea#pc-result {
  width: 100%;
  height: 60px;
  font-family: monospace;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none;
  margin-top: 10px;
}

.pc-buttons {
  margin-bottom: 10px;
}

.pc-buttons button,
#pc-copy {
  padding: 10px 15px;
  font-size: 1rem;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.pc-buttons button:hover,
#pc-copy:hover {
  background: #1e7e34;
}
