* {
  box-sizing: border-box; }

body {
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  background-color: #f4f4f4;
  color: #333333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0px;
  padding: 0px; }

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1em;
  gap: 1em; }
  form label {
    display: flex;
    gap: 1em;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
  form input, form select {
    min-width: 9em; }

#plot {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }

.flashes {
  list-style-type: none;
  padding: 0;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; }
  .flashes li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px; }
    .flashes li.error {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb; }
    .flashes li.success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb; }
    .flashes li.info {
      background-color: #d1ecf1;
      color: #0c5460;
      border: 1px solid #bee5eb; }
    .flashes li.warning {
      background-color: #fff3cd;
      color: #856404;
      border: 1px solid #ffeeba; }
