.notification-title-container a {
  font-size: 1rem !important;
}
.notification-container {
  width: 90%;
  margin: 0 auto;
}
.notification-messages-container {
  margin-top: 30px;
}
.notification-message {
  padding: 1.2rem;
  margin-bottom: 10px;
  border-radius: 8px;
}
.notification-message.read {
  background-color: #fff;
}
.notification-message {
  background-color: #e7f1f6;
}

.notification-img img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}
.notification-date {
  font-size: 0.8rem;
  color: #159e45;
  font-weight: 400;
  margin-bottom: 5px;
}
.notification-desc-short {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: 400;
  margin-bottom: 5px;
}
.notification-title {
  font-size: 1.2rem;
  color: var(--first-color-dark);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.notification-desc-long {
  font-size: 1rem;
  color: #153357b2;
  font-weight: 400;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .notification-container {
    width: 100%;
  }
  .notification-message > div{
    gap: 30px;
  }
  .notification-message-details > div {
    flex-direction: column;
    justify-content: start !important;
    align-items: start !important;
  }
  .notification-img img {
    width: 4rem;
    height: auto;
  }
  .notification-title {
    font-size: 1rem;
  }
  .notification-desc-long {
    font-size: 0.9rem;
  }
  .notification-desc-short {
    font-size: 0.8rem;
  }
  .notification-date {
    font-size: 0.7rem;
  }
  .notification-message-control span {
    display: none;
  }
}
