:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* Section */


/* Title */
.deu-title {
  font-weight: 700;
}

/* Card */
.deu-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  color: var(--text-black);
}

/* List */
.deu-list {
  padding-left: 20px;
}

.deu-list li {
  margin-bottom: 8px;
}

/* Sub headings */
.section-subtitle {
  color: var(--accent-red);
  margin-top: 20px;
}

/* Links */
.deu-link {
  display: block;
  background: #fff;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--primary-blue);
  text-decoration: none;
  border-left: 4px solid var(--accent-red);
}

.deu-link:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Table */
.deu-table table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.deu-table th {
  background: var(--primary-blue);
  color: #fff;
}

.deu-table td {
  border: 1px solid #eee;
}

.notification-list {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= ITEM ================= */
.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

/* TEXT */
.notification-item span {
  color: var(--text-black);
  font-weight: 500;
  transition: 0.3s;
}

/* ================= DOWNLOAD BUTTON ================= */
.download-btn {
  background: var(--primary-blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* ICON */
.download-btn i {
  margin-right: 6px;
}

/* ================= HOVER EFFECT ================= */

/* CARD HOVER */
.notification-item:hover {
  background: var(--primary-blue);
  transform: translateX(6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* TEXT COLOR CHANGE */
.notification-item:hover span {
  color: #fff;
}

/* BUTTON INVERT */
.notification-item:hover .download-btn {
  background: #fff;
  color: var(--primary-blue);
}

/* BUTTON HOVER */
.notification-item:hover .download-btn:hover {
  background: var(--accent-red);
  color: #fff;
}