@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --primary-color: #59315f;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  width: 100%;
}

g {
  font-family: "Montserrat", sans-serif;
}

#app {
  width: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

#content-container {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
}

#report-container {
  width: 80%;
  margin: 10px;
}

#report-nav,
#analysis-nav {
  min-width: 250px;
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 5px;
  height: 200px;
}

#analysis-nav {
  height: 300px;
}

#report-nav h1,
#analysis-nav h1 {
  color: white;
  font-size: 1.6em;
  border-bottom: solid white 2px;
  margin-bottom: 30px;
}

.logo-img {
  height: 50px;
}

.header-img {
  display: block;

  width: 70%;
  margin: auto;
  margin-bottom: 20px;
}

.figure-img {
  display: block;

  width: 80%;
  margin: auto;
  margin-bottom: 20px;
}

#nav {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-bottom: 20px;
  border-bottom: solid var(--primary-color) 4px;
}

#nav-buttons {
  display: flex;
  justify-content: space-between;
}

.nav-button,
.report-button button {
  border: 2px solid var(--primary-color);
  padding: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: bold;
  border-radius: 30px;
  margin: auto;
  margin-left: 5px;
  margin-right: 5px;
  color: black;
  text-decoration: none;
  background-color: white;
}

.nav-button:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

#nav-title {
  font-size: 2em;
  font-weight: 600;
  display: flex;
}

.report-button button {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid white;
}

.report-button button:hover {
  background-color: white;
  color: var(--primary-color);
}

.sw-title {
  color: var(--primary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

#footer {
  border-top: solid var(--primary-color) 4px;
  width: 90%;
}

.Select-control {
  width: 30ch !important;
  font-size: 1em;
}

.Select-value-label {
  font-size: 0.9em;
}
