/* Reset default margin and padding for all elements */
* {
  margin: 0;
  padding: 0;
}

/* Set a background color and font styles for the entire page */
body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

/* Style the left column containing the search form */
.left-column {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.left-column h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Style the form elements */
label {
  font-weight: bold;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Style the buttons */
.button-container {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

/* Style the right column containing patient information */
.right-column {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.right-column h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Style the patient information section */
#patient-info {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}

/* Style the lists inside the patient information section */
#patient-info h3 {
  font-size: 20px;
  margin-top: 10px;
}

ul {
  list-style-type: none;
  padding-left: 20px;
}

ul li {
  margin: 5px 0;
}

/* Style the radio buttons */
input[type="radio"] {
  margin-right: 5px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .left-column,
  .right-column {
    margin: 10px;
  }

  button {
    margin-bottom: 10px;
  }
}
