/* Dashboard */
.dashboard-container {
  padding: 1.5rem 0.9rem;
}

.dashboard-wrap {
  background: rgba(255, 255, 255, 0.99);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.dashboard-wrap .btn-wrap {
  align-self: flex-end;
  display: flex;
  gap: 2rem;
}

.dashboard-wrap .btn-wrap i {
  font-size: 2rem;
  border-radius: 0.5rem;
}

.dashboard-wrap .ph-pencil {
  /* color: var(--text-color-light); */
  color: var(--primary-dark);
}

.dashboard-wrap .ph-sign-out {
  /* color: var(--text-color-light); */
  color: var(--danger-color);
}

.img-wrap {
  display: flex;
  align-self: center;
  justify-content: center;
}
.img-wrap img {
  border-radius: 100%;
  border: 2px solid var(--border-color);
  padding: 1rem;
}

.basic-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.text-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 2rem;
}

.name-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.name-wrap h4 {
    font-size: 2rem;
    font-weight: 800;
}

.text-details .info-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.text-details .info-wrap p {
    margin-bottom: 0;
    text-transform: capitalize;
}


.main-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.dashboard-wrap h5 {
    color: var(--primary-dark);
    font-weight: 700;
    /* text-decoration: underline;
    text-underline-offset: 5px; */
}

.main-details  p {
    margin: 0.5rem 0;
    text-wrap: wrap;
    overflow-wrap: anywhere;
}

.main-details  strong {
    font-weight: 600;
    margin: 0.2rem 0;
}
.main-details span {
    margin: 0.1rem;
    text-wrap: wrap;
    overflow-wrap: inherit;
}



/* Dashboard End */

@media all and (min-width: 1080px) {
  .basic-details {
    display: flex;
    gap: 2rem;
  }

  .text-details {
    gap: 1rem;
    margin: 2rem;
  }

  .text-details h4 {
    font-size: 2.5rem;
  }
  .name-wrap {
    gap: 1rem;
  }

  .main-details div {
    min-width: 25vw;
    max-width: 25vw;
  }
}
