main .main-content {
  margin: 1rem;
}

main .page-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-container {
  width: 80%;
  margin: 0.5rem auto;
}

.progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.progress-line {
  width: 15%;
  height: 2px;
  background-color: #dadada;
  top: 50%;
  transform: translateY(-50%);
}

.progress-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  position: relative;
  color: #9c9c9c;
}

.progress-step i {
  color: #e0e0e0;
  font-size: 2rem;
  margin: 0 auto 10px;
}

.progress-bar .progress-line.done {
  width: 15%;
  height: 2px;
  background-color: #fec322;
  top: 50%;
  transform: translateY(-50%);
}

.progress-step.done i {
  color: #fec322;
  font-size: 2rem;
  margin: 0 auto 10px;
}

.page-content .notif-card {
  background-color: #fff;
  padding: 2rem;
  border: solid;
  border-color: #d9d7d8;
  border-radius: 1rem;
  border-width: 0.1rem;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-bottom:50px;
}

.notif-card .time-details {
      display: flex;
    flex-direction: row;
    color: #7d7d7d;
    border-top: solid;
    padding-top: 1rem;
    margin-top:20px;
    border-color: rgba(221, 153, 221, 0.46);
}

.notif-card .time-details .time {
  margin-left: 1rem;
  margin-right: 0.2rem;
  font-size: 0.8rem;
}

.notif-card .message {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}

.message .msg-title {
  font-weight: bold;
  font-size: 1rem;
}

.message .msg-body {
  color: #515151;
  font-size: 0.88rem;
}

.notif-card .messenger {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding: 0.5rem;
}

.notif-card .messenger .name {
  font-weight: bold;
  font-size: 1rem;
}

.notif-card .messenger .dept {
  color: #515151;
  font-size: 0.88rem;
}

/* MEDIA QUERY */
@media screen and (max-width: 768px) {
  main .main-content {
    width: 100%;
    margin: 0rem;
    padding: 1rem;
  }

  main .page-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .progress-container {
    width: 80%;
    margin: 2.4rem auto;
  }

  .progress-container .progress-bar {
    font-size: 0.7rem;
    text-wrap: pretty;
  }

  .progress-step i {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0 auto 10px;
  }

  .progress-step.done i {
    color: #fec322;
    font-size: 1rem;
    margin: 0 auto 10px;
  }

  .progress-line {
    display: none;
  }
}
