body {
  font-family: var(--main-font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--box-color);
  box-shadow: 0 2px 8px var(--box-shadow-small);
  position: sticky;
  top: 0;
  z-index: 100;
}

main {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  min-height: calc(100vh - 160px);
}

.notifications-section {
  max-width: 600px;
  min-height: max-content;
  width: 100%;
  background: var(--box-color);
  padding: 20px;
  margin-top: 80px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--box-shadow);
}

.notifications-section h1 {
  color: var(--primary-color);
  font-size: 30px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}

.notification-card {
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  box-shadow: 1px 0px 0px 1px var(--box-shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--background-color);
}

.notification-card:last-child {
  margin-bottom: 0;
}

.notification-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--box-shadow);
}

.notification-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
}

.notification-time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification-profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}