       
        
 /* Chat button */
    #chat-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #5919C3;
      color: white;
      padding: 14px 18px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-size: 16px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      z-index: 999;
    }

    /* Chat popup box */
    #chat-popup {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 300px;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      display: none;
      z-index: 999;
    }

    #chat-popup p {
      margin: 0 0 15px 0;
      font-size: 15px;
      color: #333;
    }

    .chat-btn {
      display: inline-block;
      margin: 5px 5px 0 0;
      padding: 10px 14px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      cursor: pointer;
    }

    .ticket-btn {
      background-color: #28a745;
      color: white;
    }

    .mail-btn {
      background-color: #ffc107;
      color: black;
    }

    @media (max-width: 480px) {
      #chat-popup {
        width: 90%;
        right: 5%;
        bottom: 80px;
      }
    }        
        
