.back-button{
         display: inline-flex;
  gap: 10px;
    }   


    .back-button {
      background-color: #4a90e2;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s, transform 0.2s;
    }

    .back-button:hover {
      background-color: #357ab8;
      transform: translateY(-2px);
    }

    .back-button:active {
      transform: translateY(0);
    }


 .chat-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }
    .chat-widget {
      position: fixed;
      bottom: 70px;
      right: 20px;
      width: 87%;
      max-width: 400px;
      max-height: 500px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      z-index: 1000;
    }
    .chat-header {
      background: #0d6efd;
      color: white;
      padding: 10px 15px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .chat-body {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
      background: #f8f9fa;
    }
    .chat-footer {
      padding: 10px;
      border-top: 1px solid #ccc;
      background: #fff;
    }
    .message {
      margin-bottom: 10px;
    }
    .message.customer {
      text-align: right;
    }
    .message.admin {
      text-align: left;
    }
    .message .bubble {
      display: inline-block;
      padding: 10px 15px;
      border-radius: 15px;
      max-width: 75%;
      border: 1px solid transparent;
      color: black;font-family: 'Source Sans Pro';font-size: 18px; font-weight: bold;
      
      
    }
    .message.customer .bubble {
      background: transparent;
      border-color: transparent;
      color: #000;
    }
    .message.admin .bubble {
      background: #dee2e6;
      color: #000;
      border-color: transparent;
    }
    .message small {
      display: block;
      font-size: 11px;
      color: #666;
    }
    
    .welcome-text{
        color: black;font-family: 'Source Sans Pro';font-size: 15px; 
    }
    .spanchat{
        color: black;font-family: 'Source Sans Pro';font-size: 18px; font-weight: bold;
    }
    
    
    
    .footer_faq{
        color: #ffff;
    }