#openProfile {
  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);
}

#openProfile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.6);
}
/*==============================================================================================
                                       Container Styles */

.profileContainer{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 23px;
  width: 100%;
  height: 100%;
}
.profileHeader{                                       
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: row;
  background-color: #292929;
  border-radius: 20px 20px 8px 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;
}
.profileHeader:hover {
  border-bottom-color: #A2B59F;
}

.profileAbout {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px;
  position: relative;
  width: 100%;
}

#profileCont1{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 89.5%;
  max-height: 89.5%;
}

#profileDescriptionContainer{
  display: flex;
  flex-direction: column;
  padding: 7px;
  width: 92%;
  height: 35%;
  margin: 3% 2.5%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fafafa;
  border-radius: 10px;
  transition: 0.3s ease;
  animation: fadeInUpCustom 1s ease;
}
#profileDescriptionContainer:hover, #walletChartContainer:hover  {
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.profileLabel{
  font-family: var(--font6);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  animation: fadeInUpCustom 0.7s ease;
}
.profileInput{
  font-family: var(--font6);
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  height: 25px;
  width: 64%;
  padding: 1px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  margin-left: auto;
  margin-right: 5px;
  animation: fadeInUpCustom 0.7s ease;
}
.profileInput:focus,
.profileInput:active {
  outline: none;
  border-color: rgba(51, 51, 51, 0.4);
  box-shadow: 0 0 5px rgba(40, 100, 138, 0.4);
}
#userStats{
  display: flex;
  flex-direction: row;
  padding: 7px;
  width: auto;
  height: auto;
  margin-left: 5px;
  background-color: transparent;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.userStatBox{
  width: 30px;
  height: 30px;
  margin: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #ededed;
  border-radius: 2px;
  transition: 0.2s ease;
}
.userStatBox:hover{
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

#walletChartContainer{
  display: flex;
  width: 94.7%;
  height: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  margin: 0% 2.5%;
  border-radius: 7px;
  transition: 0.3s ease;
}
#goalContainer{
  width: 88%;
  font-size: 18px;
  font-family: var(--font6);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  line-height: 18px;
  margin: 3% auto;
  text-align: center;
  padding: 4px 3px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  cursor: default;
}
#walletContainerP{
  width: 88%;
  height: 23%;
  margin: 4.5% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: #333333;
  cursor: default;
}
#walletP{
  color: white;
  font-size: 27px;
  font-family: var(--font6);
  font-weight: 600;
}
.dataBtn{
  width: 80%;
  height: 35px;
  border: none;
  outline: none;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.7);
  background-color: #fafafa;
  font-size: 20px;
  margin: 2px auto;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  animation: fadeInUpCustom 0.7s ease;
}
.dataBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.4);
}