@font-face {
  font-family: 'Inter';
  src: url('/Fonts/ExtractedFonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.761);
}
:root{
  --white-color : #ffffff;
  --green-color : rgb(22, 186, 41);
}
body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #474747;
}
.Expense__Tracker__Wrapper{
  height: 900px;
  width: 80vw;
  background-color: #1E1E1E;
  border-radius: 15px;
}
.Expense__Tracker__Heading{
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}
.Expense__Status{
  background-color: #121212;
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  border-radius: 10px;
  align-items: center;
}
.Current__Balance__Wrapper{
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30%;
  line-height: 32px;
  border-radius: 10px;

}
#Your__Balance__text{
  font-size: 1.2rem;
  font-weight: 700;
}
#Your__Balance__Amount{
  font-size: 1.5rem;
  color: var(--green-color);
  font-weight: 700;
}
#Current__Balance{
  color: var(--green-color);
}
.Income__Expenses__Wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  width: 100%;
  gap: 20px;

}
.Income__Box,.Expenses_Box{
  background-color: #1E1E1E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  line-height: 32px;
  width: 30%;
  margin: 0 0 40px 0;
  border-radius: 10px;
}
.Income__Box  p{
  font-size: 1.5rem;
  color: var(--green-color);
  font-weight: 700;
}
.Expenses_Box  p{
  font-size: 1.5rem;
  color: rgb(194, 36, 36);
  font-weight: 700;
}
#Income__Amount{
  color: var(--green-color);
}
#Expense__Amount{
  color: rgb(194, 36, 36);
}

.TransactionsList__AddingTransactions__Wrapper{
  display: flex;
  height: 55%;
  width: 95%;
  margin: 0 auto;
}
.Transactions__List__Wrapper{
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  
}

.Adding__Transactions__Wrapper{
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
.Adding__Transactions__Wrapper p{
  margin-top: 16px;
}
.Transactions__Information__Wrapper{
  margin-top: 30px;
}
input{
  height: 40px;
  width: 100%;
  color: black;
  padding: 0 10px;
  font-size: 1rem;
  margin-bottom: 16px;
  border-radius: 5px;
  outline: none;
  border: none;
}
input:focus{
  outline: none;
}
.Transactions__Information__Wrapper p{
  margin-bottom: 8px;
}
#Low__opacity{
  opacity: 0.7;
  font-size: 0.8rem;
}
#Add__Transaction__Button{
  padding: 10px 0;
  width: 100%;
  background-color: #11a137;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  text-transform: capitalize;
}
#Add__Transaction__Button:hover{
  background-color: hsl(136, 81%, 30%);
}
#Add__Transaction__Button:active{
  background-color: hsl(136, 81%, 40%);
}
.Transaction__list{
  overflow-y: auto;
  margin: 10px 0;
  height: 83%;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list__Item{
  height: 80px;
  width: 100%;
  background-color: #313131 ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  
}
.list__item__Text{
  margin-left: 30px;
  font-size: 0.9rem;
  word-wrap: break-word;
}
.Delete__Button{
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.amount__Button__Box{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 40%;
}
.Transactions__and__DeleteButtonALL{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin-top: 16px;
}
.Delete__Button__All{
  background-color: #11a137;
  border: none;
  border-radius: 5px;
  padding: 8px 24px;
}

.green__border{
  border-right: 3px solid #11a137;
}
.red__border{
  border-right: 3px solid #a11111;
}