@keyframes showBtn{
  0%{
    opacity: 0;
    scale: 0.9;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    scale: 1;
    transform: translateY(0px);
  }
}
#openHome{
  display: none;
  flex-direction: row;
  align-items: center;
  background-color: #e3e3e3;
  border-radius: 27px;
  animation: fadeInUpCustom 1.2s ease-out forwards;
  transition: 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
#openHome:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.6);
}
.homeContainer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.homeCont1{
  display: flex;
  flex-direction: column;
  height: 42%;
  border-radius: 20px 20px 10px 10px;
  width: 100%;
  background-color:#292929;
  cursor: default;
}
#storeNameH{
  font-family: var(--font6);
  letter-spacing: 1px;
  font-size: 32px;
  width: auto;
  color: white;
  margin: 0.7% 0% 0% 1.7%;
}
.homeBox1{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 80%;
}
#homeBoxA{
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 0% 0.5%;
  margin-left: 1%;
  border-radius: 5px;
  height: 92%;
}
.homeBtns{
  background-color: #a9c79d;
  border: none;
  font-family: var(--font4);
  font-weight: bold;
  font-size: 19px;
  padding: 3px 0px;
  color: rgba(0, 0, 0, 0.9);
  margin-top: 9px;
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition:  0.2s ease;
  animation: showBtn 1s ease forwards;
}
.homeBtns:hover, .activeH{
  background-color: #839c79;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
#homeBoxB{
  display: flex;
  flex-direction: column;
  margin-left: 1%;
  width: 40%;
  height: 60%;
  padding: 0px 5px;
  border-radius: 5px;
  margin-top: 10px;
  background-color: #333333;

}

.homeBoxD{
  display: flex;
  flex-direction: column;
  width: 20%;
  margin-left: auto;
  height: 90%;
  align-items: center;
  animation: swing-in 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  animation-delay: 1.5s;
}

.homeTxt2{
  font-family: var(--font6);
  font-size: 28px;
  width: auto;
  line-height: 28px;
  margin-top: 3px;
  padding: 0px;
  color: #c2c2c2;
  letter-spacing: 1px;
}

#netH,#incomeH,#expenseH{
  width: 65%;
  margin-left: auto;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}
#netProfitH::-webkit-scrollbar, #incomeH::-webkit-scrollbar, #expenseH::-webkit-scrollbar{
  height: 6px; 
}

#netProfitH::-webkit-scrollbar-track,#incomeH::-webkit-scrollbar-track, #expenseH::-webkit-scrollbar-track{
  background: transparent;
}

#netProfitH::-webkit-scrollbar-thumb, #incomeH::-webkit-scrollbar-thumb, #expenseH::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

#netProfitH::-webkit-scrollbar-thumb:hover, #incomeH::-webkit-scrollbar-thumb:hover, #expenseH::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.text1H{
  color: #c2c2c2; 
  font-size: 18px; 
  font-family: var(--font7); 
  line-height: 18px; 
  font-weight: 400;
}
.text2H{
  color: #8c8c8c; 
  font-size: 18px; 
  margin: 3px 0px 8px 0px; 
  font-family: var(--font7); 
  height: 18px; 
  font-weight: 400;
}
.homeTxt3{
  font-family: var(--font6);
  font-size: 28px;
  color: #6e6e6e;
  letter-spacing: 1px;
  line-height: 28px;
}
.homeTxtNet{
  font-family: var(--font6);
  font-size: 28px;
  color: #6e6e6e;
  letter-spacing: 1px;
}
#incomeH{
  color:#50a36a;
}
#expenseH{
  color:#eb2323;
}
.homeCont2{
  display: flex;
  flex-direction: row;
  height: 58%;
  width: 100%;
}
.homeBoxE{
  display: flex;
  flex-direction: column;
  width: 33%;
  height: 100%;
}
.homeBoxF{
  display: flex;
  flex-direction: column;
  margin-left: 1%;
  width: 65%;
  height: 100%;
  align-items: center;
}
#walletContainerHome{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 94%;
  height: 20%;
  background-color: #292929;
  margin: 1% 0% 0% 1%;
  border-radius: 14px;
  cursor: default;
}
#walletH{
  font-size: 25px;
  line-height: 25px;
  margin: 3px 0px 4px 0px;
  color: white;
  text-align: center;
  width: 96%;
  font-family: var(--font6);
  font-weight: 600;
  letter-spacing: 1px;
  animation: wakeUp 0.5s ease forwards;
}
#transactionMenuH{
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 88%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: y proximity;
  cursor: default;
  -webkit-overflow-scrolling: touch; 
  will-change: scroll-position; 
}
#transactionMenuH>* {
  scroll-snap-align: start;
}
#transactionMenuH::-webkit-scrollbar-m{
  display: none;
}
.transactionDescriptionH{                                        
  display: flex;
  position: relative;
  flex-direction: row;
  align-self: center;
  align-items: center;
  margin-top: 4px;
  background-color: #faf9f7;
  padding: 2px;
  width: 97%;
  min-height: 38px;
  max-height: 45px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 3px solid transparent;
  transition: 0.2s ease;
  cursor: default;
  animation: fadeInUpCustom 0.7s ease;

  }
  
.transactionDescriptionH:hover {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.dateSeparatorH, .dateSeparatorO, .dateSeparatorC{
 font-weight: 600;
 margin-top: 10px;
 padding: 4px 0px 4px 13px;
 font-size: 15px;
 color: rgba(0, 0, 0, 0.7);
 font-family: var(--font7);
 background-color: #f2f2f2;
}
.transactionIconH{
  width: 36px;
  border-radius: 2px;
}
.transactionCategoryH{
  font-size: 19px;
  font-weight: 530;
  margin-left: 1%;
  letter-spacing: 0.4px;
  width: 42%;
  color: rgba(0, 0, 0, 0.8);
}
.transactionDateH {
  font-size: 17px;
  text-align: center;
  font-weight: 530;
  width: 20%;
  color: rgba(0, 0, 0, 0.8);
}
.transactionAmountH{
 text-align: right;
 font-size: 20px;
 font-weight: 560;
 width: 29%;
 margin-right: 1%;
 margin-left: auto;
}

 .transactionCategoryH, .transactionAmountH, #walletH {
  overflow-x: scroll;
  overflow-y: none;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.transactionCategoryH::-webkit-scrollbar, .transactionAmountH::-webkit-scrollbar, #walletH::-webkit-scrollbar {
  height: 6px; 
}

.transactionCategoryH::-webkit-scrollbar-track, .transactionAmountH::-webkit-scrollbar-track, .walletH::-webkit-scrollbar-track {
  background: transparent;
}

.transactionCategoryH::-webkit-scrollbar-thumb, .transactionAmountH::-webkit-scrollbar-thumb, #walletH::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.transactionCategoryH::-webkit-scrollbar-thumb:hover, .transactionAmountH::-webkit-scrollbar-thumb:hover, #walletH::-webkit-scrollbar-thumb:hover  {
  background: rgba(0, 0, 0, 0.2);
}


@media screen and (max-width: 1200px) {
  
.transactionCategoryH{
    font-size: 17px; 
  }
.transactionAmountH{
  font-size: 18px;
}
.transactionDateH{
  font-size: 16px;
}
.text1H, .text2H{
  font-size: 17px;
}
#walletH{
  font-size: 23px;
}
.homeBtns{
  font-size: 17px;
}
.homeTxt2, .homeTxtNet{
  font-size: 26px;
}
#storeNameH{
  font-size: 30px;
}
#displayTime{
  font-size: 50px;
  line-height: 50px;
}
#displayDate, #displayDay, #displayYear{
  font-size: 22px;
  line-height: 22px;
}
}


