/* styles.css */

#app-container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
}


* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  background-color: #fff;
  color: #333;
}

h1 {
  color: #333;
  margin-bottom: 5px;
  text-align: center;
  font-size: 1rem;
}

h2 {
  color: #666;
  margin-bottom: 0;
  text-align: center;
  font-size: .8rem;
  font-style: italic;
}

.chartMenu {
  width: 100vw;
  height: 40px;
  background: #1A1A1A;
  color: rgba(54, 162, 235, 1);
}

.chartMenu p {
  padding: 10px;
  font-size: 20px;
}

.chartCard {
  width: 100vw;
  height: calc(100vh - 40px);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chartBox {
  width: 700px;
  padding: 20px;
  border-radius: 20px;
  border: solid 1px black;
  background: white;
}

.inputContainer {
  margin-bottom: 10px;
  text-align: center;
}