.notification-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 320px;
    z-index: 1000;
}

/* Hidden notification template */
.notification {
    background: #fff;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
    display: none;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.notification-body {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.notification-avatar {
    width: 64px;
    height: 64px;
/*    border-radius: 50%;*/
    margin-right: 10px;
    object-fit: cover;
    object-position: top left;
}

.close-btn {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
}

.close-btn:hover {
    color: #000;
}

/* Button repositioned to the right */
.add-notification-btn {
    position: absolute;
    top: 70px;
    right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.add-notification-btn:hover {
    background: #0056b3;
}

/* Hidden template */
.hidden {
    display: none;
}

.textgrad {
  display: inline-block;
  position: relative;
/*  color: #14532d;*/
  font-weight: 600;
  overflow: hidden;
}

.textgrad::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(170, 255, 200, 0.6) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 6s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 10% {
    left: -50%;
  }
  30%, 70% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}