/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  display: flex;
}

.sidebar {
  width: 200px;
  background-color: #4CAF50;
  color: white;
  padding: 20px;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
}

.content {
  flex-grow: 1;
  padding: 20px;
}

label, input, button {
  margin: 10px 0;
}

input[type="number"] {
  padding: 5px;
  width: 150px;
}

button {
  padding: 5px 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

p {
  font-size: 18px;
}

.visualization {
  margin-top: 20px;
  height: 200px;
  display: flex;
  justify-content: space-between;
}

.bar {
  height: 100%;
  width: 40%;
  background-color: #4CAF50;
}

.bar-comparison {
  height: 100%;
  width: 40%;
  background-color: #8BC34A;}
/* Container for the left and right panes */
.container {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

/* Left Pane for Conversion Inputs */
.conversion-panel {
  flex: 1;
  padding: 20px;
  max-width: 600px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

/* Right Pane for the image */
.image-pane {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: left;
  padding: 20px;
}

/* Styling the image */
.conversion-image {
  max-width: 50%;
  max-height: 300px;
  opacity: 0.7; /* Make the image not too prominent */
  border-radius: 8px;
}
