body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

.connected {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Adjust the gap between divs as needed */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid black; /* Just for visualization */
    border: 1px solid black; /* Just for visualization */
    padding: 20px; /* Padding for the outer div */
}

.user-label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #f0f0f0;
}

.pricing-insights {
  margin-top: 10px;
  padding: 5px 10px;
  display: inline-block;
  padding: 8px 16px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  transition-duration: 0.4s;
}

.close-connection {
  margin-top: 10px;
  padding: 5px 10px;
  display: inline-block;
  padding: 8px 16px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  transition-duration: 0.4s;
}

.pricing-insights:hover {
  background-color: #45a049;
}

.info-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  transition-duration: 0.4s;
}

.info-button:hover {
  background-color: #0056b3;
}

.blue-button {
  background-color: blue; /* Color for the first button */
  color: white;
}

.green-button {
  background-color: green; /* Color for the second button */
  color: white;
}

.customMessageContainer {
  margin-top: 10px;
  width: 100%;
  max-width: 600px; /* Adjust maximum width as needed */
  padding: 20px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  border-radius: 4px;
}

#textInput {
  width: 300px;
  height: 200px;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 20px; /* Add gap between textarea and button */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}


select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  width: 200px; /* Adjust width as needed */
}

/* Style for option elements */
option {
  padding: 8px 12px;
  font-size: 16px;
  color: #333;
}

/* Style for option elements when hovered */
option:hover {
  background-color: #f0f0f0;
}

/* Style for option elements when selected */
option:checked {
  background-color: #007bff;
  color: #fff;
}

.sendJson {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.3s ease;
  margin-left: 10px;
}

.sendJson:hover {
  background-color: #0056b3;
}

.sendJson:active {
  background-color: #004080;
}

/* Styling the container div */
#total {
  background-color: #f8f9fa; /* Light gray background */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding around content */
  text-align: center; /* Center-align content */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Drop shadow effect */
}

/* Styling the headline */
#headline {
  font-size: 2.5rem; /* Large font size */
  color: #007bff; /* Blue color */
  text-transform: uppercase; /* Uppercase text */
  margin: 0; /* Remove margin */
}
