/* Container for notifications */
.notifications {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Each notification item */
.notification-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

/* Image in notification item */
.notification-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 20px;
}

/* Details of the notification */
.notification-details {
  display: flex;
  align-items: center;
}

/* Date of the notification */
.notification-date {
  text-align: center;
  margin-right: 20px;
}

.notification-date .year-month {
  font-size: 14px;
  color: #999;
}

.notification-date .day {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

/* Content of the notification */
.notification-content {
  display: flex;
  flex-direction: column;
}

/* Title of the notification */
.notification-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.notification-title a {
  text-decoration: none;
  color: #333;
}

.notification-title a:hover {
  color: #0073aa;
}



