body, html {
  height: 100%;
}

#root {
  position: relative;
  height: 100%;
}

a {
  text-decoration: none;
}

.navbar {
  background-color: #85bb65 !important;
  margin-bottom: 20px;
}

.navbar-nav {
  display: none;
}

.navbar-brand {
  font-size: x-large;
}

.hamburger-menu-nav {
  position: absolute;
  background-color: #85bb65 !important;
  top: 56px;
  right: 0;
  width: 180px;
  z-index: 1;
  border-radius: 10px;
}

.hamburger-menu-nav > ul {
  list-style: none;
}

.jumbotron-container {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

.jumbotron {
  background-color: rgba(133, 187, 101, 0.25);
  height: 250px;
  text-align: center;
  width: 75%;
  border-radius: 5px;
}

.display-4 {
  margin-top: 75px;
  font-weight: bold;
  color: #85bb65;
}

.row {
  --bs-gutter-x: 0;
}

.content-container {
  margin-bottom: 75px;
}

.card {
  width: 75%;
  margin-top: 20px;
}

.purchase-form-container,
.category-form-container,
.note-form-container,
.edit-category-form-container,
.edit-purchase-form-container,
.edit-note-form-container {
  margin: 0 auto;
  max-width: 768px;
  display: flex;
  justify-content: center;
}

.purchase-form-group,
.category-form-group,
.note-form-group,
.edit-category-form-group,
.edit-purchase-form-group,
.edit-note-form-group {
  width: 75%;
}

select,
input {
  margin-bottom: 20px;
}

.btn {
  cursor: pointer;
  background-color: navy;
  border: none;
}

.btn-link {
  color: white;
  margin-right: 10px;
  text-decoration: none;
}

canvas {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 250px !important;
  margin-left: 20px;
  border: 1px solid black;
  background-color: white;
}

.purchases-by-time-header {
  margin-top: 20px;
}

footer {
  display: flex;
  justify-content: flex-start;
  background-color: #85bb65;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  position: relative;
  height: 68px;
}

.footer-name {
  color: white;
  margin-top: 10px;
  margin-left: 10px;
  font-weight: normal;
}

@media only screen and (min-width: 805px) {
  .category-form-group,
  .purchase-form-group,
  .note-form-group,
  .edit-category-form-group,
  .edit-purchase-form-group,
  .edit-note-form-group {
    width: 75%;
  }

  .category-form-button-container,
  .purchase-form-button-container,
  .note-form-button-container {
    width: 75%;
  }
}

@media only screen and (min-width: 992px) {
  .hamburger-menu-nav {
    display: none;
  }

  .navbar-nav {
    display: flex;
  }

  .jumbotron {
    width: 50%;
  }

  .card {
    width: 50%;
  }
}

.hidden {
  display: none;
}
