@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;
  background-image: "Ziad";
}

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);
}

/* cards style */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap");

a {
  text-decoration: none;
  display: inline-block;
}
.card-contaner {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 50em;
  margin-inline: auto;
  gap: 3.25rem;
  position: relative;
  z-index: 10;
  align-items: center;
  padding: 5em 0;
}
.card-contaner .card {
  position: relative;
  z-index: 555;
  max-width: 20rem;
  min-height: 10rem;
  width: 90%;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  position: relative;
  box-shadow: 1px 12px 25px rgba(0, 0, 0, 0.78);
  background: radial-gradient(
    ellipse at right top,
    #ffb74194 0%,
    #151419 47%,
    #151419 100%
  );
  border-radius: 2.25rem;
}
.card-contaner .card::before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  z-index: -1;
  border: 0.155rem solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.card-contaner .card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 0.5em 0em 1.5em;
}
.card-contaner .card-header .count {
  color: #ddd;
}
.card-contaner .card-header i {
  color: #fff;
  /* width: 2.5rem; */
  cursor: pointer;
  margin: 10px;
}
.card-contaner .card-body {
  position: absolute;
  width: 87%;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7em 1.25em 0.5em 1.5em;
}
.card-contaner .card-body h3 {
  color: #fff;
  font-size: 1.375rem;
  margin-top: 0.625em;
  margin-bottom: 0.188em;
  text-transform: capitalize;
  font-weight: 600;
}
.card-contaner .card-body p {
  color: #ddd;
  font-size: 1rem;
  letter-spacing: 0.031rem;
}

.card-contaner .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 0.063rem solid #292929;
  display: flex;
  justify-content: center;
  padding: 0.7em 1.25em 0.5em 1.5em;
  background: #151419;
  border-bottom-left-radius: 2.25rem;
  border-bottom-right-radius: 2.25rem;
}

.card-contaner .card-footer .btn-start {
  background: #222127;
  color: #fff;
  border-radius: 2em;
  padding: 0.625rem 1.5rem;
  transition: ease 0.3s;
}

.card-contaner .card:before {
  background: linear-gradient(
      45deg,
      #232228,
      #232228,
      #232228,
      #232228,
      #ffb741
    )
    border-box;
}

.card-contaner .card .btn-start:hover {
  background: #dfa03ad5;
}
