/* ================================
   MONTH GROUP (CURVED)
================================ */
.month-group {
  margin-bottom: 15px;
}

.month-header {
  font-size: 20px;
  font-weight: 600;
  color: #138808;
  margin-bottom: 6px;
  padding-left: 5px;
}

.month-body {
  background: #f9fbff;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid #e6ecf5;
}

/* ================================
   CARD
================================ */
.notification-card {
  margin-bottom: 5px;
}

.notification-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.notification-box:hover {
  background-color: #f5faff;
  transform: translateX(3px);
}

/* ================================
   DATE ICON (ONLY DAY)
================================ */
.time.icon {
  min-width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #138808;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

/* ================================
   LEFT SIDE INDICATOR LINE
================================ */
.month-group {
  position: relative;
  margin-bottom: 15px;
  padding-left: 10px;
}

/* Vertical green line */
.month-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background: #138808;
  border-radius: 2px;
}

/* ================================
   LINK
================================ */
.notification-link {
  color: #0d6efd;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.notification-link:hover {
  text-decoration: underline;
  color: #CA2325;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 576px) {

  .time.icon {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .notification-link {
    font-size: 14px;
  }
}

/* ================================
   ARCHIVE BUTTON
================================ */
.archive-link-box {
  margin-top: 15px;
}

/* Button style */
.archive-btn {
  display: inline-block;
  background: #138808;
  color: #fff;
  padding: 6px 14px;
  font-size: 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align:center;
  margin-top: 15px;
}

/* Hover */
.archive-btn:hover {
  background: #0f6e06;
  color: #fff;
}