.dateSeparator{
 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;
}

@keyframes wakeUp{
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes sleepUp{
  0%{
    opacity: 1;
    transform: translateY(0px);
  }
  100%{
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes wakeLeft{
  0%{
    transform: translateX(10px);
  }
  100%{
    transform: translateX(0px);
  }
}
@keyframes appearCont{
  0%{
    opacity: 0;
    scale: 0.95;
    transform: translateY(-5px);
  }
  100%{
    opacity: 1;
    scale: 1;
    transform: translateY(0px);
  }
}
@keyframes appearBtn{
  0%{
    opacity: 0.3;
    scale: 0.9;
  }
  70%{
    opacity: 1;
    scale: 1.1;
  }
  100%{
    scale: 1;
  }
}

#openPayments{
  display: none;
  flex-direction: row;
  align-items: center;
  background-color: #f2f2f0;
  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);
}
#openPayments:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.6);
}

.ordersContainer1{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 23px;
  width: 71%;
  height: 100%;
  position: relative;
}

.ordersHeader{                                                
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: row;
  background-color: #292929;
  border-radius: 20px 0px 0px 8px;
  width: 100%;
  height: 10.5%;
  margin: 0px;
  gap: 0px;
  border-bottom: 4px solid #e3dfdc;
  transition: border-bottom-color 0.4s ease-out;
  cursor: default;
}
.ordersHeader:hover {
  border-bottom-color: #A2B59F;
}

#storeNameO, #storeNameC, #storeNameN, #storeNameA, #storeNameP{
  position: relative;
  font-family: var(--txt1);
  font-weight: 650;
  color: #919191;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 23px;
  bottom: 6px;
  font-size: 18px;
  letter-spacing: 1px;
  display: flex;
}
#ordersAbout{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px;
  width: 100%;
}
.todayDate{
  justify-content: right;
  font-size: 18px;
  font-family: var(--font5);
  font-weight: 600;
  color: #9e9e9e;
  margin: 2px 0px 0px 5px;
}

.ordersCal{
  justify-content: right;
  height: 24px;
  letter-spacing: 0;
  margin-top: 1px;
  margin-left: 10px;
}

#ordersCentertab {
  background-color: transparent;
  display: flex;
  border-radius:7px;
  width: 100%;
  height: 47px;
  margin-top: 0px;
  margin-bottom: 2px;
  cursor: default;
}

.ordersTxt1 {
  font-family: var(--font13);
  font-size: 19px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 18px;
  margin-left: 16px;
  width: 38%;
}

.ordersTxt3 {
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--font13);
  font-size: 18px;
  width: 85%;
  margin-left: 7px;
}

@keyframes showCustomDateContainer{
  0%{
      opacity:0;
      transform: translateY(10px);
    }
100%{
      opacity:1;
      transform: translateY(0px);
    }
  }


#customDateContainer{
    display: none;
    flex-direction: row;
    width: auto;
    padding: 5px;
    padding-left: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-left: 30%;
    top: 1%;
    background-color: white;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
    position: absolute;
    animation: showCustomDateContainer 0.5s cubic-bezier(.18,.89,.32,1.28);
    cursor: pointer;
    z-index: 1200;
}
#customDateContainer:hover{
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#fromDate, #toDate{
  border: 1px solid transparent;
  transition: 0.3s ease;
  outline: none;
  cursor: pointer;
}
#fromDate:hover, #toDate:hover{
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

#ordersTransactionContainer{
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #fcfcfc;
  width: 96%;
  height: 75%;
  margin-top: 3px;
  margin-left: 0px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  transition: all 0.3s ease;
  animation: flowDown 1s ease;
}
#ordersTransactionContainer:hover {
  transform: translateY(-4px); 
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4); 
}

#transactionCountO{
  position: absolute;
  text-align: center;
  line-height: 20px;
  font-size: 20px;
  border-radius: 60px;
  width: 50px;
  padding: 20px 5px 20px 5px;
  background-color: #333333;
  color: white;
  z-index: 1000;
  cursor: pointer;
  top: 85%;
  left: 1%;
  cursor: pointer;
  transition: 0.3s ease;
  animation: wakeUp 1s ease forwards;
}
#transactionCountO:hover, #transactionCountO.countActive{
  background-color: black;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
#transactionMenuO{
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  height: 88%;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: y proximity;
  cursor: pointer;
  -webkit-overflow-scrolling: touch; 
  will-change: scroll-position; 
}
#transactionMenuO>* {
  scroll-snap-align: start;
}
#transactionMenuO::-webkit-scrollbar {
  display: none;
}
.ordersTransactionHeader{
  display: flex;
  position: sticky;
  top: 0;
  justify-content: flex-start; 
  align-items: center;
  background-color: #292929;
  border: 1px solid #292929;
  width: 100%;
  height: 27px;
  z-index: 1; 
  margin-bottom: 7px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  animation: appearCont 1s ease forwards;
}
.ordersTyp{
  margin-left: 2%;
  color: white;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 1px;
}
.ordersDat {
  width: 57.5%;
  color: white;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 1px;
  text-align: right;
}
.ordersAmt{
  width: 33%;
  color: white;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 1px;
  text-align: right;
}

.editTransaction{
  width: 22%;
  height: 30px;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  background-color: #333333;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  right: 1%;
  cursor: pointer;
  transition: 0.2s ease;
  position: absolute;
  z-index: 1000;
}
.editTransaction:hover{
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  background-color: black;
}
.editBackground{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1000;
  background-color: rgba(51, 51, 51, 0.6);
  width: 100%;
  height: 100%;
}
.editContainer{
  background-color: #faf9f7;
  width: 370px;
  height: 220px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 7px;
}
.editId{
  font-size: 20px;
  font-weight: 610;
  color: #000;
  padding: 2px 7px;
}
.editDate{
  font-size: 17px;
  font-weight: 620;
  color: rgba(0, 0, 0, 0.7);
  padding: 5px 0px;
}
#restAmount{
  font-size: 17px;
  font-weight: 620;
  color: rgba(0, 0, 0, 0.7);
  text-align: right;
  margin-left: 7px;
  width: 88%;
}
#beforeAmount, #reduceAmount {
  margin-top: 4px;
  margin-left: 7px;
  font-family: var(--font12);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  height: 30px;
  width: 85%;
  padding: 3px 8px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background-color: whitesmoke;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  text-align: right;
  transition: all 0.2s ease;
}
#beforeAmount:focus,
#beforeAmount:active,
#reduceAmount:focus,
#reduceAmount:active{
  outline: none;
  border-color: #49a8e3;
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
  background-color: white;
}

.transactionDescriptionO{   
  display: flex;
  flex-direction: row;
  position: relative;
  align-self: center;
  align-items: center;
  margin-top: 7px;
  background-color: #faf9f7;
  padding: 2px;
  width: 97%;
  min-height: 36px;
  max-height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 3px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  animation: fadeInUpCustom 0.7s ease;
}
.transactionDescriptionO:hover {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.transactionIconO{
  width: 36px;
  border-radius: 2px;
}
.transactionCategoryO{
  font-size: 19px;
  line-height: 30px;
  font-weight: 530;
  margin-left: 1%;
  letter-spacing: 0.4px;
  width: 48%;
  color: rgba(0, 0, 0, 0.8);
}
.transactionDateO {
  font-size: 17px;
  line-height: 19px;
  text-align: center;
  font-weight: 560;
  width: 17%;
  color: rgba(0, 0, 0, 0.8);
}
.transactionAmountO{
 font-size: 20px;
 line-height: 20px;
 text-align: right;
 font-weight: 560;
 width: 27%;
}

.transactionCategoryO, .transactionAmountO{
  overflow-y: hidden;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.transactionCategoryO::-webkit-scrollbar, .transactionAmountO::-webkit-scrollbar{
  height: 6px; 
}

.transactionCategoryO::-webkit-scrollbar-track, .transactionAmountO::-webkit-scrollbar-track{
  background: transparent;
}

.transactionCategoryO::-webkit-scrollbar-thumb, .transactionAmountO::-webkit-scrollbar-thumb{
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.transactionCategoryO::-webkit-scrollbar-thumb:hover, .transactionAmountO::-webkit-scrollbar-thumb:hover{
  background: rgba(0, 0, 0, 0.2);
}

#ordersSection{
  display: flex;
  align-items: center;
  width: 29%;
  height: 100%;
  background: linear-gradient(to bottom, #292929 0%, #292929 10.5%, 
  #f2f2f0 10.5%, #f2f2f0 100%);
  border-radius: 0px 20px 20px 0px;
}
#ordersContainer2{
  display: flex;
  flex-direction: column;
  border-radius: 23px;
  width: 95.5%;
  height: 94%;
  background-color: white;
  box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.6); 
  transform: perspective(800px) translateZ(0); 
  transition: all 0.3s ease; 
  border: 1px solid rgba(0, 0, 0, 0.3);
  animation: flowLeft 1s ease;
}
#ordersContainer2:hover {
  transform: translateY(-4px); 
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4); 
}
.ordersTopCont2{
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: top;
  background-color: transparent;
  width: 100%;
  height: 33%;
  border-radius: 23px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.ordersBottomCont2 {
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 100%;
  height: 67%;
  border-radius: 7px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  cursor: pointer;
}

#customDateBtn{
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: var(--font4);
  font-weight: 700;
  font-size: 16px;
  height: 62%;
  margin-top: 5px;
  padding-top: 0px;
  padding-left: 7px;
  padding-right: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: wakeUp 1s ease forwards;
}
#customDateBtn:hover, #customDateBtn.active{
  background-color: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

#wallet{
  margin-top: 5px;
  margin-left: 1%;
  padding-left: 7px;
  padding-right: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-bottom: 12px;
  background-color: white;
  width: 37%;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: var(--font4);
  font-weight: 700;
  font-size: 16px;
  cursor: default;
  transition: 0.3s ease;
  animation: wakeUp 1s ease forwards;
}

#wallet:hover{
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.ordersTxt2{
  font-family: var(--font13);
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 1px;
  margin-left: 7px;
  margin-bottom: 0px;
  width: 61%;
}

#amountO {
  font-family: var(--font12);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  height: 30px;
  width: 85%;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background-color: whitesmoke;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  text-align: right;
  transition: all 0.2s ease;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
#amountO:focus,
#amountO:active,
#getCategory:focus,
#getCategory:active {
  outline: none;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.editBtns{
  font-family: 'Poppins', sans-serif;
  font-weight: 620;
  font-size: 19px;
  width: 24%;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 2px 7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: 0.3s ease;
}
.editBtns:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#finalAmountO{
  font-family: var(--font16);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600px;
  margin: 0px;
  margin-left: 2%;
  margin-top: 4px;
  width: 36%;
  overflow-x: hidden;
  color: rgba(0, 0, 0, 0.7);
  height: 25px;
  border-radius: 7px;
  padding-right: 10px;
  text-align: right;
}
.ordersButtons{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 7px;
}
#getIncomeO {
  font-family: 'Poppins', sans-serif;
  font-weight: 620;
  font-size: 19px;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 0px;
  background-color: #6b8e76; /* Use your custom green */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: 3%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: 0.3s ease;
}

#getIncomeO:hover, .catgeoryTypeIncome:hover{
  background-color: #5a7d65; /* Use your custom green */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
#getIncomeO:active, .catgeoryTypeIncome:active{
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #5a7d65; /* Use your custom green */
}

#getExpenseO{
  font-family: 'Poppins', sans-serif;
  font-weight: 620;
  font-size: 19px;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 0px;
  background-color: #ed533b; /* Bold, elegant red-orange tone */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: 3%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: 0.3s ease;
}
#getExpenseO:hover, .catgeoryTypeExpense:hover{
background-color: #f24b30; /* Bold, elegant red-orange tone */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
#getExpenseO:active, .categoryTypeExpense:active{
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 background-color: #f24b30; /* Bold, elegant red-orange tone */
}

#getCategory{
  margin-top: 4px;
  font-family: var(--font12);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  height: 30px;
  width: 85%;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background-color: whitesmoke;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  text-align: right;
  transition: all 0.2s ease;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
/*....................................Quick Category.........................................*/
#newCategory{
  font-weight: 700;
  font-family: var(--font4);
  text-align: center;
  align-items: center;
  border-radius: 30px;
  border: none;
  background-color: #424744;
  color: white;
  margin-left: 7px;
  cursor: pointer;
  transition: all 0.3s ease; 
  transition: 0.3s ease;
}

#newCategory:hover {
  transform: translateY(-3px); 
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.ordersCate{
  margin-top: 0px;
  height: 54%;
  width: 100%;
  margin-top: 2px;
  animation: appearCont 1s ease forwards;
}
.addTransactionCont{
  animation: appearCont 1s ease forwards;
}
.ordersCate1{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 29px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
}

hr{
border: 1.5px solid rgba(0, 0, 0, 0.2);
margin-bottom: 4px;
}

#deleteCategory{
  cursor: pointer;
  margin-bottom: 2px;
  border-radius: 52%;
  padding: 1px;
  transition: 0.3s ease;
}
#deleteCategory:hover, #deleteCategory.active{
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

#categoryArea{
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #f0f0f0;
  width: 92%;
  padding: 2% 3%;
  margin-top: 5px;
  margin-left: 4px;
  gap: 0px; 
  border-radius: 15px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.category-item{
  font-family: var(--font8);
  font-weight: 520;
  color: rgba(0, 0, 0, 0.7);
  padding: 0px 4px 4px 4px;
  font-size: 15px;
  max-width: 85%;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background-color: white;
  transition: 
  background-color 0.2s ease,
  box-shadow 0.3s ease,
  transform 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 7px;
  margin-bottom: 7px;
}
.category-item:hover {
  color: royalblue;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 
  transform: translateY(-2px); 
}
.category-item.delete-active{
  color: red;
}

.catgeoryTypeIncome{
  font-family: 'Poppins', sans-serif;
  font-weight: 620;
  font-size: 19px;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 0px 5px;
  background-color: #6b8e76; /* Use your custom green */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 2px 7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: 0.3s ease;
}
.catgeoryTypeExpense{
  font-family: 'Poppins', sans-serif;
  font-weight: 620;
  font-size: 19px;
  color: white;
  text-align: center;
  letter-spacing: 0.6px;
  margin: 0px 5px;
  background-color: #ed533b; /* Use your custom green */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 2px 7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;
  transition: 0.3s ease;
}


@media screen and (max-width: 1200px){
  
  .transactionCategoryO{
    font-size: 17px;
  }
  .transactionAmountO{
    font-size: 18px;
  }
  .transactionDateO{
    font-size: 16px;
  }
  .ordersTxt3, .ordersTxt2, .ordersTxt1{
    font-size: 17px;
  }
  .ordersTxt2{
    width: 70%;
  }
}

@media screen and (max-width: 1255px){
  .ordersContainer1{
    width: 70%;
  }
  #ordersSection{
    width: 30%;
  }
}
@media screen and (max-width: 1200px){
  .ordersContainer1{
    width: 69%;
  }
  #ordersSection{
    width: 31%;
  }
}
@media screen and (max-width: 1170px){
  .ordersContainer1{
    width: 68%;
  }
  #ordersSection{
    width: 32%;
  }
}
@media screen and (max-width: 1150px){
  .ordersContainer1{
    width: 71%;
  }
  #ordersSection{
    width: 29%;
  }
}
@media screen and (max-width: 1080px){
  .ordersContainer1{
    width: 70%;
  }
  #ordersSection{
    width: 30%;
  }
}
@media screen and (max-width: 1030px){
  .ordersContainer1{
    width: 69%;
  }
  #ordersSection{
    width: 31%;
  }
}

#monthlyGoalContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  width: 400px;
  height: 130px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #f2f2f0;
}