@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap");
*,
html {
  margin: 0;
  /* overflow-x: hidden; */
}

body {
  background-color: #121212;
  color: white;
  min-height: 100vh;
  direction: rtl;
}

header {
  padding: 0.5rem;
  margin: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 7rem;
}

.userProfile {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  border: 1px solid white;
  border-radius: 7px;
  padding-right: 0.3rem;
  padding-left: 0.2rem;
  transition: ease 0.3s;
}

.userProfile:hover {
  background: #ffffff2f;
}

.profileIcon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 100%;
  padding: 5px;
  margin: 5px;
}

.fa-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profileIcon i {
  padding: 1px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
}

.userProfile p {
  padding: 5px;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  margin: 2rem auto;
  background: #252525;
  padding: 0.8rem;
  border-radius: 25px;
}

.welcome-banner {
  width: fit-content;
  padding: 0 2rem;
  background-color: #252525;
  box-shadow: 2px 2px 20px rgba(2, 2, 2, 0.5);
  min-height: 150px;
  margin: 1rem auto;
  border-radius: 25px;
  display: flex;
  align-items: center;
}

.examer-welcome-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  margin: 1rem;
  border-left: 1px solid white;
}

.examer-name {
  margin: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.profile-avatar {
  background: #121212;
  width: fit-content;
  border-radius: 100%;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar img {
  width: 90px;
}

.signoutCont {
  direction: ltr;
  width: 125px;
}

.logoutBtn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
}

.signout {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signout svg {
  width: 17px;
}

.signout svg path {
  fill: white;
}

.signoutText {
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}
.logoutBtn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.logoutBtn:hover .signout {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}

.logoutBtn:hover .signoutText {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.logoutBtn:active {
  transform: translate(2px, 2px);
}
