
      html, body
      {
        background-color: var(--bg-color);
        font-family: 'Montserrat';
        font-size: 11pt;
      }
      .logo {
        margin-bottom: 40px;
      }

      * { box-sizing: border-box; }

      #gg-help-button{
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #ddd;
        color: white;
        font-size: 22px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99999;
        box-shadow: 0 0 12px rgba(244, 247, 246, 0.5);
        cursor: pointer;
        transition: box-shadow 0.3s ease;
      }

      #gg-help-button.blink {
        animation: blink 1s infinite;
      }

      @keyframes blink {
        0%, 100% { box-shadow: 0 0 12px rgba(0, 92, 83, 0.5); }
        50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
      }

      #gg-help-chat {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 360px;
        height: 520px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(0, 92, 83, 0.6);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 99999;
        animation: slideUp 0.3s ease-out;
        font-family: 'Poppins', sans-serif;
      }

      @keyframes slideUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }

      @keyframes slideDown {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 0; transform: translateY(20px); }
      }

      .gg-help-hide {
        animation: slideDown 0.3s ease-in forwards;
      }

      #gg-help-header {
        background: #3c605b;
        color: white;
        padding: 16px;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      #gg-help-body {
        flex: 1;
        background: #fff;
        padding: 20px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
      }

      .gg-help-msg-bot {
        background: #d4d0cd;
        color: #000;
        align-self: flex-start;
        padding: 10px 14px;
        border-radius: 16px 16px 16px 6px;
        margin-bottom: 10px;
        max-width: 80%;
        font-size: 14px;
      }

      .gg-help-msg-user {
        background: #d4d0cd;
        color: #000;
        align-self: flex-end;
        padding: 10px 14px;
        border-radius: 16px 16px 6px 16px;
        margin-bottom: 10px;
        max-width: 80%;
        font-size: 14px;
      }

      .gg-help-msg-bot strong {
        font-weight: 600;
      }

      .gg-help-msg-bot em {
        font-style: italic;
        color: #333;
      }

      .gg-help-msg-bot ul,
      .gg-help-msg-bot ol {
        padding-left: 20px;
        margin: 10px 0;
      }

      .gg-help-msg-bot a {
        color: #f1f2f3ff;
        text-decoration: underline;
      }

      .gg-help-typing {
        font-size: 13px;
        padding: 10px 14px;
        background: #d4d0cd;
        color: #000;
        border-radius: 12px;
        max-width: fit-content;
        align-self: flex-start;
        margin-bottom: 10px;
        opacity: 0.85;
        font-style: italic;
      }

      .dot-loader span {
        animation: blinkDots 1.4s infinite;
        display: inline-block;
      }

      .dot-loader span:nth-child(2) { animation-delay: 0.2s; }
      .dot-loader span:nth-child(3) { animation-delay: 0.4s; }

      @keyframes blinkDots {
        0%, 100% { opacity: 0.2; }
        50% { opacity: 1; }
      }

      #gg-help-footer {
        padding: 14px;
        background: #3c605b;
        display: flex;
        gap: 10px;
        border-top: 1px solid #1a4b42;
      }

      #gg-help-input {
        flex: 1;
        padding: 10px;
        border: 1px solid #9FC131;
        border-radius: 8px;
        background: #ffffff;
        color: #042940;
        outline: none;
      }

      #gg-help-send {
        background: #005C53;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 8px;
        cursor: pointer;
      }

      .gg-help-close {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
      }

        .flex {
            display: flex;
            align-items: center;
        }

        .icon-style,
        .icon-notification {
            min-width: 36px;
            min-height: 36px;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        .sub-icon-style {
            padding: 12px;
            min-width: 30px;
        }

        .vertical-center {
            display: flex !important;
            align-items: center !important;
        }

        .countMessage {
            height: 25px;
            width: 25px;
            font-size: 12px;
            align-items: center;
        }

        .new_message,
        .scheduled_message,
        .birthday_previous,
        .birthday_today,
        .daily_report {
            background: yellow;
            height: 35px !important;
            font-size: 12px;
            color: black;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            padding-right: 10px;
            visibility: visible;
        }

        .new_message.invisible,
        .scheduled_message.invisible,
        .birthday_previous.invisible,
        .birthday_today.invisible,
        .daily_report.invisible {
            visibility: hidden;
        }

        .navbar-nav {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .mobile-notifications {
          display: none;
        }

        .notification-button {
          background-color: #ffeb3b;
          border: 1px solid #000;
          color: #000;
          padding: 8px 12px;
          border-radius: 8px;
          font-size: 14px;
          font-weight: bold;
          cursor: pointer;
          text-align: center;
          position: relative;
          transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .notification-button:hover {
          background-color: #fff176;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        /* Dropdown lista */
        .notification-list {
          position: absolute;
          right: 0;
          top: 110%;
          margin-top: 8px;
          padding: 10px 0;
          background-color: #fff;
          list-style: none;
          display: none;
          border: 1px solid #e0e0e0;
          box-shadow: 0 8px 16px rgba(0,0,0,0.1);
          width: 280px;
          z-index: 999;
          border-radius: 10px;
          animation: fadeIn 0.2s ease-in-out;
        }

        /* Animação fade */
        @keyframes fadeIn {
          from { opacity: 0; transform: translateY(-5px); }
          to { opacity: 1; transform: translateY(0); }
        }

        /* Triângulo (seta) no topo */
        .notification-list::before {
          content: '';
          position: absolute;
          top: -10px;
          right: 16px;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-bottom: 10px solid #fff;
          filter: drop-shadow(0 -1px 1px rgba(0,0,0,0.1));
        }

        /* Itens da lista */
        .notification-list li {
          margin: 0;
        }

        .notification-list a,
        .notification-list button {
          padding: 10px 16px;
          width: 100%;
          text-align: left;
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 14px;
          color: #333;
          background: none;
          border: none;
          cursor: pointer;
          transition: background-color 0.2s ease;
        }

        .notification-list a:hover,
        .notification-list button:hover {
          background-color: #f5f5f5;
        }

        /* Ícones nos itens (se houver) */
        .notification-list i {
          font-size: 16px;
          color: #555;
        }

        /* Badge opcional */
        .notification-button .badge {
          background-color: red;
          color: white;
          border-radius: 50%;
          padding: 3px 7px;
          font-size: 10px;
          position: absolute;
          top: -5px;
          right: -5px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
          .notification-list {
            right: 10px;
            width: 90vw;
          }

          .notification-button {
            width: auto;
            font-size: 13px;
            padding: 6px 10px;
          }
        }

        .invisible {
          display: none !important;
        }

        @media (max-width: 768px) {
          .icon-notification {
            min-width: 10px;
            min-height: 10px;
          }

          .desktop-notifications {
            display: none;
          }

          .mobile-notifications {
            display: block;
          }

          .text-mobile-notifications {
            font-size: 12px !important;
          }

          .new_message,
          .scheduled_message,
          .birthday_previous,
          .birthday_today,
          .daily_report {
            background: yellow;
            height: 35px !important;
            font-size: 12px;
            color: black;
            font-weight: bold;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            border: 1px solid black;
            border-radius: 10px;
            padding: 0 10px;
            visibility: visible;
          }

          .notification-list {
            right: 0;
            width: 100vw;
            top: 45px;
            padding: 10px;
            margin: 0;
          }

          .notification-list li {
            display: flex;
            align-items: center;
          }

          .notification-list li a {
            display: flex;
            color: black;
            align-items: center;
            text-decoration: none;
          }

          .notification-list li i {
            margin-right: 5px;
          }
        }
