* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: white;
}

/*Animation*/
.clip-box {
  left: -50%;
  top: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.425);
  clip-path: polygon(0 0, 43% 0, 100% 100%, 52% 100%);
}
.users-list:hover .clip-box {
  animation-name: moving;
  animation-duration: 0.2s;
}
.users-analyis:hover .clip-box {
  animation-name: moving;
  animation-duration: 0.2s;
}
.PhotoProfile img:hover {
  transform: scale(1.1, 1.1);
}
@keyframes moving {
  0% {
    left: -30%;
  }
  25% {
    left: -5%;
  }
  50% {
    left: 25%;
  }
  75% {
    left: 65%;
  }
  100% {
    left: 80%;
  }
}
#CrudSystem {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.sideNav {
  background-color: #f2eae1;
  border-radius: 15px 0 0 15px;
  height: 100%;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-shadow: 17px 0px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.content {
  height: 100%;
  width: 80%;
  background-color: #e5e5e5;
  border-radius: 0 15px 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5%;
  position: relative;
}
.searching {
  height: 10%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.searching input {
  height: 50%;
  border: solid 2px #f8d442;
  border-radius: 16px;
}
.disc {
  height: 15%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.disc div {
  padding: 1% 2%;
  color: white;
  background-color: #f8d442;
  border-radius: 16px;
  cursor: pointer;
}
.disc div:hover {
  transform: scale(1.1, 1.1);
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.1);
}
.disc h3 {
  font-weight: 600;
}
.disc div a {
  color: white;
}

.container {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.Logo {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Logo h1 {
  border-left: 5px solid #f8d442;
  padding-left: 2%;
  height: auto;
}
.PhotoProfile {
  height: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
}
.PhotoProfile img {
  padding: 3%;
  object-fit: cover;
  object-position: center;
  border-radius: 200px;
  width: 50%;
  background-color: #f8d442;
  transition: transform 0.3s ease-in-out;
}
.BTN-Links {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 40%;
}
.BTN-Links div {
  border-radius: 15px;
  text-align: center;
  padding: 5% 0;

  text-decoration: none;
}
.BTN-Links div a {
  text-decoration: none;
  color: black;
  font-weight: 400;
}
.BTN-Links .users-list {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.BTN-Links .users-analyis {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.Active {
  background-color: #f8d442;
}
.InActive {
  background-color: transparent;
}
.Hide {
  display: none !important;
}
.unHide {
  display: block;
}
/*Table*/
.tableList {
  height: 75%;
  width: 100%;
  overflow: scroll;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}
.tables {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: white;
  align-items: center;
  border-radius: 16px;
  padding: 2%;
}
.HoverUser {
  transition: transform 0.1s ease-in-out;
}
.HoverUser:hover {
  transform: scale(1.1, 1.1);
}

.AllTable {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.tables div {
  text-align: center;
  width: 25%;
}
.tables .photoTable img {
  object-fit: cover;
  object-position: top;
  width: 50%;
  height: 50px;
}
.Action {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.AddUsers {
  position: absolute;
  width: 80%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.562);
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inputBox {
  border-radius: 16px;
  background-color: #e5e5e5;
  border: solid 2px #f8d442;
  width: 50%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.inputBox input {
  border: none;
  border-radius: 16px;
  padding: 8px;
}
.iconClose {
  position: absolute;
  z-index: 999;
  top: 5%;
  right: 5%;
}
.iconClose:hover {
  transform: scale(1.1, 1.1);
  cursor: pointer;
}
.iconClose:hover .iconClose i {
  color: #f8d442;
}
.iconClose i {
  color: #e5e5e5;
  font-size: 24px;
}
/* Report */
.content2 {
  height: 100%;
  width: 80%;
  background-color: #e5e5e5;
  border-radius: 0 15px 15px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.userReport {
  background-color: #fefbec;
  text-align: center;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 2%;
  height: auto;
  border-radius: 16px;
}
.userReport h2 {
  text-align: right;
  color: black;
  font-weight: 800;
}
.userReport p {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #feaf00;
}
.userReport i {
  font-size: 36px;
  color: #feaf00;
  font-weight: 600;
  border: solid 1px #feaf00;
  border-radius: 8px;
  padding: 2% 3%;
}
.balanceReport {
  text-align: center;
  border-radius: 16px;
  height: auto;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
  background: #feaf00;
  background: linear-gradient(
    90deg,
    rgba(254, 175, 0, 1) 0%,
    rgba(248, 212, 66, 1) 100%
  );
  padding: 2%;
}
.balanceReport h2 {
  text-align: right;
  color: black;
  font-weight: 800;
}
.balanceReport p {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: white;
}
.balanceReport i {
  font-size: 36px;
  color: white;
  font-weight: 600;
  border: solid 1px white;
  border-radius: 8px;
  padding: 2% 3%;
}
