/* CSS scares the pee out of me so I stole these from the example here */
/* I used React's Semantic UI directly in the html*/
/* https://cs.uky.edu/~soward/CS316/Examples/JS/fetchW.html */
/* https://cs.uky.edu/~soward/CS316/Examples/React/getForecast.html*/

.json {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  font-size: 0.8em;
  background-color: #f5f5f5;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 600px;
  overflow-y: auto;
}

/* These are for formatting the buttons and results to look like nice cards*/
#appContainer {
  margin-top: 40px;
  max-width: 700px;
}

#dailyForecast .card {
  margin: 10px;
}
