* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  font-weight: 300;
  color: black;
  margin: 0;
  margin-top: 0;
  background: #dcdada;
  overflow-x: hidden;
}

/* navbar */
.nav-container {
  background-color: rgb(12, 155, 155);
  padding: 1rem;
  display: flex;
  gap: 0.3rem;
}

.nav-container > a {
  background-color: rgb(7, 181, 181);
  width: 14rem;
  height: 4rem;
  padding: 1rem;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  text-align: start;
}

/* section1 */

.section1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* buttons */
.profit-loss {
  margin: 0 2rem;
}

h1 {
  color: rgba(8, 97, 175, 4);
}

.btn-container {
  display: flex;
  gap: 1rem;
}

.btn {
  background-color: rgba(8, 97, 175, 4);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1.6rem;
  position: relative;
  cursor: pointer;
}

.grid-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branch-toggle {
  display: none;
  background-color: rgba(8, 97, 175, 4);
  color: white;
  padding: 1rem;
  width: 15rem;
  position: absolute;
  top: 10.9rem;
  z-index: 1;
  /* box-shadow: 10px 5px 5px white; */
}

#branch {
  border: none;
  width: 100%;
  border-bottom: 1px solid black;
  background-color: rgba(8, 97, 175, 4);
  margin-bottom: 0.5rem;
  outline: none;
}

.time-div {
  display: none;
}

input.modified::-webkit-calendar-picker-indicator {
  width: 100%;
  margin: 0;
  border: 1px solid red;
  background: none;
}

/* card */

.card-container {
  display: flex;
  gap: 4rem;
  padding-top: 1rem;
}

.card {
  background-color: white;
  width: fit-content;
  padding: 0 1.7rem;
}

.card > p {
  font-size: 1rem;
  color: #888;
}

.card > h1 {
  font-size: 2rem;
  color: black;
  font-size: 2.7rem;
  font-weight: 100;
  margin: -0.9rem 0;
}

.percent {
  color: rgb(16, 132, 93);
}

/* table */
.tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.head-table,
.table-container,
.total {
  padding: 0 1rem;
}

.head-table {
  display: grid;
  grid-template-columns: 9rem 12rem 4rem repeat(4, 1fr);
  background-color: rgb(12, 155, 155);
  margin-top: 5rem;
  color: white;
}

.table-container {
  display: grid;
  grid-template-columns: 9rem 12rem 4rem repeat(4, 1fr);
  background-color: white;
  height: 7rem;
}

.column {
  height: fit-content;
}

.column > p {
  text-align: start;
}

.total {
  display: grid;
  grid-template-columns: 9rem 12rem 4rem repeat(4, 1fr);
  border-top: 1px solid black;
  background-color: white;
}

.charts-div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
