  :root {
    --color-primary: var(--color-success-bg1);
    --color-text-muted: #6b7280;
    --color-bg-light: #f9fafb;
    --color-bg-white: #ffffff;
    --color-border: #e5e7eb;
    --color-blue-hover: #3b82f6;
  }

  .notify-header-custom {
    background: var(--color-primary);
    font-size: 13pt;
    color: #fff;
    padding: 0.2rem;
    font-weight: 600;
    text-align: center;
  }

  .notify-body-custom {
    display: flex;
    justify-content: center;
    background-color: var(--color-bg-light);
  }

  .notify-container-custom {
    width: 100%;
    background-color: var(--color-bg-white);
    border-radius: 10px;
    padding:.3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .notify-card-custom {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0; /* Reduced vertical padding */
    border-bottom: 1px solid var(--color-border);
    gap: 0.8rem;
  }

  .notify-avatar-custom {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .notify-description-custom {
    flex-grow: 1;
    line-height: 1.2;
  }

  .notify-user-custom {
    color: var(--color-primary);
    font-size: 10pt;
    font-weight: 600;
    text-transform: capitalize;
  }

  .notify-user-custom:hover {
    color: var(--color-blue-hover);
    cursor: pointer;
  }

  .notify-time-custom {
    font-size: 8.5pt;
    color: var(--color-text-muted);
    margin: 1px 0;
  }

  .notify-message-custom {
    font-size: 9.5pt;
    color: #111827;
    margin-top: 2px;
  }

  .notify-empty-custom {
    text-align: center;
    font-size: 10pt;
    color: var(--color-text-muted);
    padding: 2rem 0;
  }

  @media screen and (max-width: 550px) {
    .notify-container-custom {
      padding: 0.3rem;
      width: 100%;
    }
    .notify-card-custom {
      flex-direction: row;
      gap: 0.3rem;
    }
  }
