
:root {
  --brand-green: #4f632b;
  --bg-gray: #f8f9fa;
  --border-color: #eee;
  --text-muted: #888;
  --tajawal: "Tajawal", sans-serif;
}

body {
  /* background-color: var(--bg-gray); */
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

.notification-page {
  padding: 60px 0;
  min-height: 70vh;
}

.notification-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.notification-header {
  margin-bottom: 30px;
  text-align: start;
}

.notification-title {
  font-family: var(--tajawal);
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  background: #fff;
}

.notification-item:hover {
  background: #fafafa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.notif-content-wrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
}

.notif-icon-circle {
  width: 48px;
  height: 48px;
  background: #f1f3f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.notif-icon-circle img {
  width: 24px;
  height: 24px;
}

.notif-dot {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.notif-dot.red {
  background: #e03939;
}

.notif-text {
  text-align: start;
}

.notif-title {
  font-family: var(--tajawal);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.notif-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.notif-time {
  font-size: 13px;
  color: #bbb;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification-container {
    padding: 24px;
  }
  .notification-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .notif-time {
    align-self: flex-end;
  }
}
