:root {
  --txt1: "Nunito", sans-serif;
  --txt2: "Quicksand", sans-serif;
  --txt3: "Rubik", sans-serif;
  --txt4: "Baloo", sans-serif;
  --txt5: "Fredoka One", sans-serif;
}
:root {
  --font1: 'Open Sans', sans-serif;
  --font2: 'Poppins', sans-serif;
  --font3: Lucida Console, Lucida Sans Typewriter, monaco, Bitstream Vera Sans Mono, monospace;
  --font4: 'Futura', sans-serif;
}
:root {
  --c1: rgba(0,0,0,0.8);
  --c2: rgba(0,0,0,0.7);
  --c3: rgba(0,0,0,0.6);
  --c4: rgba(0,0,0,0.5);
}
:root {
  --b1: #f0f0f0;
  --b2: #edf2df;
  --b3: #c6ccb4;
  --b4: #d1d4c9;
}

h1{ font-size: 20px;}
h2{ font-size: 19px;}
h3{ font-size: 18px;}
h4{ font-size: 16px;}
p{ font-size: 16px;}


#wallet{
  background-color: #fafafa;
  border: 1px solid rgba(0,0,0,0.1);
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
  letter-spacing: 1px;
  border-radius: 1rem;
  width: auto;
  color: rgba(0,0,0,0.6);
  margin-left: auto;
}
.input{
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  height: auto;
  width: auto;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  text-align: right;
  transition: all 0.2s ease;
  margin: 3px 0px;
}
.input:focus,
.input:active {
  outline: none;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.inputDate{
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  height: auto;
  width: auto;
  padding: 0.1rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  background-color: transparent;
  text-align: right;
}
.btn{
  font-weight: 620;
  font-size: 19px;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 3px;
  background-color: #333333; /* Use your custom green */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 0.2rem 0.7rem ;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.3s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.roundBtn{
  display: flex;
  align-items: center;
  width: auto;
  font-size: 15px;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  border: none;
  background-color: transparent;
  color: rgba(0,0,0,0.8);
  letter-spacing: 1px;
  transition: 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.2);
}
.roundBtn:hover, #filterDateBtn.active{
  background-color: var(--b3);
  
}
.roundIcon{
  width: 16px;
  height: 16px;
}
.roundBtn::after{
  content: attr(alt);
  padding-left: 0.1rem;
}

#filterDateBtn{
  margin-left: auto;
  margin-right: 0.5rem;
}

#filterDateContainer{    
  display: none;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: auto;
  cursor: pointer;
  margin: 0rem 0.5rem 0.25rem auto;
}

.categoryArea{
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: var(--b4);
  width: 100%;
  padding: 0.5rem;
  max-height: 150px;
  height: auto;
  margin-top: 0.5rem;
  border-radius: 15px;
  overflow-y: scroll;
  cursor: pointer;
}
.categoryItem{
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fafafa;
  width: auto;
  color: var(--c3);
  border-radius: 0.4rem;
  margin: 0.3rem;
  max-width: 70%;
  height: 28px;
  padding: 0.2rem 0.4rem 0rem 0.4rem;
  overflow: hidden;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}
.categoryItem:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.symbol{

}
.symbolBtn{
  height: 30px;
  width: 30px;
  background-color: white;
  border-radius: 100px;
  padding: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
}