/* Set the default font family */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Set the background color, text color and border radius */
body {
  background-color: #f4f4f4;
  color: #333;
  border-radius: 5px;
}

/* Set the colors for links */
a {
  color: #428bca;
  text-decoration: none;
}

a:hover {
  color: #2a6496;
  text-decoration: underline;
}

/* Set the colors for headings */
h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: bold;
}

.panel {
  background-color: #cccccc;
  border-radius: 10px;
  padding: 10px;
}

.datapanel {
  background-color: #d6d6d6;
  border-radius: 10px;
  padding: 10px;
}

button {
  margin: 5px;
}
/* Set the border radius and background color of buttons */
button, input[type="submit"], input[type="reset"] {
  border-radius: 50px;
  background-color: #428bca;
  color: #fff;
  border: none;
  padding: 8px 12px;
}


/* Set the colors for form elements */
input[type="text"], input[type="password"], textarea {
  border-radius: 3px;
  border: solid 1px #ccc;
  padding: 6px 12px;
  color: #333;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #428bca;
}

/* Set the color of the page footer */
footer {
  color: #999;
  font-size: 12px;
  padding: 10px;
}

/* Set the margin and padding for the main content area */
.main {
  margin: 20px;
  padding: 20px;
}
