#openNotes {
  display: none;
  flex-direction: row;
  align-items: center;
  min-width: 800px;
  width: 100%;
  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);
}

#openNotes:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.6);
}

.notesContainer1 {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 23px;
  width: 100%;
  height: 100%;
}

.notesHhh {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 10.5%;
  min-height: 10.5%;
  max-height: 10.5%;
  margin: 0px;
  gap: 0px;
  background-color: #292929;
  border-radius: 20px 20px 0px 8px;
  border-bottom: 4px solid #e3dfdc;
  transition: border-bottom-color 0.4s ease-out;
  cursor: default;
}
.notesHhh:hover {
  border-bottom: 4px solid #A2B59F;
}

.notesHeader {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: row;
  background-color: transparent;
  width: 30%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  gap: 0px;
  cursor: default;
}


.notesAbout {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px;
  width: 100%;
}
#todayDateN {
  justify-content: right;
  font-size: 18px;
  font-family: var(--font5);
  font-weight: 600;
  color: white;
  margin: 2px 0px 0px 5px;
}
#searchMenu{
  display: flex;
  flex-direction: row;
  width: 60%; 
  background-color: white;
  border-radius: 7px;
  height: 28px;
  opacity: 0;
  margin-top: 20px;
  border: 1px solid rgba(0,0,0,0.3);
  padding: 0px;
  animation: appear 2.0s ease forwards;
}
.notesCal {
  justify-content: right;
  height: 24px;
  letter-spacing: 0;
  margin-top: 1px;
  margin-left: 10px;
}

#search {
  font-family: var(--font4);
  font-weight: 600;
  font-size: 17px;
  height: 20px;
  outline: none;
  padding: 3px 7px 4px 10px;
  border: none;
  width: 95%;
}

#sch {
  height: 100%;
  background-color: #e8e5da;
  padding: 0px 2px 0px 1px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}
/*==============================================================================================
                                        Main area*/
#main{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 89.5%;
  max-height: 89.5%;
}
#sideNavigation{
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  width: 22%;
  cursor: pointer;
  height: 100%;
}

.noteTypeBtns{
  background-color: white;
  padding: 4px;
  border-radius: 100px;
  margin: 0px auto;
  transition: 0.2s ease;
  animation: fadeInUpCustom 0.7s ease;
}
#contentHistory{
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
}
#folders{
  width: 80%;
  height: 35px;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  background-color: #333333;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  animation: fadeInUpCustom 0.7s ease;
}
#folderTitle{
  align-self: center;
  width: 90%;
  border: none;
  padding-left: 7px;
  font-family: var(--font13);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding-bottom: 1px;
  overflow: hidden;
}
.storedFolder, .storedContent{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 30px;
  margin-top: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fafafa;
  border-radius: 5px;
  transition: 0.2s ease;
  animation: fadeInUpCustom 0.7s ease;
}
.folderText, .contentText{
  font-family: var(--font13);
  font-size: 18px;
  text-align: left;
  width: 80%;
  padding-left: 3px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.2s ease;
}
.contentIcon{
  opacity: 0.9;
}
.storedFolder:hover p, .storedContent:hover p, .storedContent.contentActive p{
  color: black;
}
.storedFolder:hover, .storedContent:hover, .storedContent.contentActive{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.noteTypeBtns:hover, #folders:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
} 

#contentBox{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 78%;
  height: 100%;
}

#anim{
display: flex;
align-self: center;
width: 300px;
height: 300px; 
object-fit: cover;
border-radius: 200px;
animation: flowDown 1s ease;
}

.contentContainer{
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  background-color: #e3e3e3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 82%;
  height: 92%;
  border-radius: 15px;
  transition: 0.3s ease;
  animation: fadeInUpCustom 0.7s ease-out forwards;
}
.contentContainer:hover{
  transform: translateY(-4px);
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
}
.contHead{
  display: flex;
  flex-direction: row;
  height: 5%;
  width: 100%;
  margin-top: 5px;
}
.contentHeader{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 10%;
}
#noteTitle, #listTitle, #billTitle{
  width: 96%;
  height: 80%;
  resize: none;
  border: none;
  padding-left: 7px;
  font-family: var(--font13);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 7px;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 7px;
  padding-bottom: 1px;
  overflow: hidden;
}
#noteTitle:focus,
#noteTitle.active,
#listTitle:focus,
#listTitle:active,
#billTitle:focus,
#billTitle:active,
#folderTitle:focus,
#folderTitle:active{
  outline: none;
  border-color: black;
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
}
#contentMain{
  width: 96%;
  height: 80%;
  resize: none;
  border: none;
  padding-left: 7px;
  font-family: var(--txt1);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 7px;
  padding-bottom: 1px;
  overflow-y: scroll;
}
#contentMain:focus,
#contentMain.active {
  outline: none;
  border-color: black;
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
}

.listArea{
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  width: 96.9%;
  height: 80%;
  margin: 5px 2px 0px 0px;
  background-color: white;
  border-radius: 5px;
}
.listBox{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 99.5%;
  height: 10%;
  border: none;
  background-color: white;
  margin-top: 5px;
  border-radius: 7px;
}
.listText{
  width: 90%;
  height: 70%;
  resize: none;
  border: none;
  font-size: 16px;
  padding-left: 7px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 7px;
  overflow: hidden;
  padding-top: 1%;
}
.listText:focus,
.listText.active {
  outline: none;
  border-color: black;
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
}
.listCheckBox{
  margin-left: 10px;
  width: 18px;
  height: 18px;
  margin-bottom: 3px;
  margin-right: 7px;
}

.billArea{
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  width: 96.9%;
  min-height: 60%;
  max-height: 60%;
  margin: 3px 2px 0px 0px;
  background-color: white;
  border-radius: 5px;
}
.billDetails{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 96.9%;
  height: 6%;
  margin: 5px 2px 0px 0px;
  background-color: transparent;
  border-radius: 5px;
}
.netBillContainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 96.9%;
  height: 10%;
  margin: 0px 2px 0px 0px;
  background-color: white;
  border-radius: 5px;
}
.billBox{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 10%;
  background-color: white;
  margin-top: 5px;
}
.billText{
  width: 67%;
  height: 70%;
  resize: none;
  border: none;
  font-size: 16px;
  padding-left: 10px;
  font-family: var(--font16);
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.6%;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  overflow: hidden;
}
.billAmount{
  width: 29%;
  height: 70%;
  text-align: right;
  resize: none;
  border: none;
  font-size: 16px;
  padding-right: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  overflow: hidden;
  padding-bottom: 0.6%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}
.billText:focus,
.billText.active,
.billAmount:focus,
.billAmount:active{
  outline: none;
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.billDetailsText{
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1px;
  font-weight: 600;
}