        body {
           font-family: Arial, sans-serif;
           margin: 0;
           padding: 0;
           display: flex;
           height: 100vh;
       }

       #containers {
            align-items: center;
            flex-direction: row; /* Side-by-side layout */
            width: 100%;
            height: 100vh; /* Full viewport height */
            /*overflow-y: auto; */
        }

        #collab-header {
            justify-content:center;
            display: flex;
            align-items: center;
            gap: 10px; /* Adjust spacing between the heading and GIF */
        }

        #collab-header h2 {
            font-size: 1.5rem;
            margin: 0;
        }

        #container {
            display: flex;
            flex-direction: column;
            padding: 10px;
            box-sizing: border-box;
            overflow-y: hidden; 
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
            margin :10px;
        }
   
        #chat-window {
            height: 30vh; 
            overflow-y: scroll;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            background: #f9f9f9;
            margin-bottom: 10px;
        }

        .message {
            margin: 10px 0;
        }

        .user-message {
            border-radius: 10px;
            padding :12px;
            background-color: #c4dfff;
            color: black;
        }

        .bot-message {
            border-radius: 10px;
            padding :12px;
            background-color: beige;
            text-align: left;
            white-space: pre-wrap;
            word-wrap: break-word;
            line-height: 1.4; /* Optional: makes it more readable */
        }

        .bot-message strong {
            font-weight: bold;
            color: #2c3e50; /* Slightly darker color for emphasis */
        }
        
        .bot-message em {
            font-style: italic;
            color: #34495e;
        }
        
        .bot-message code {
            background-color: #f8f9fa;
            border-radius: 3px;
        }

        #input-container {
            display: flex;
            padding-top: 10px;
            height: 70px;
        }

        #message-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            resize: none; /* Disable manual resizing */
            overflow: hidden; /* Hide scrollbar initially */
            height: auto;
        }

        #send-button {
            padding: 10px 20px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            margin-left: 10px;
            cursor: pointer;
            font-size: 14px;
        }
        #send-button:disabled {
            background-color: #d3d3d3; /* Light gray background */
            color: #a9a9a9; /* Darker gray text */
            cursor: not-allowed; /* Show a "not-allowed" cursor */
            opacity: 0.7; /* Slightly reduce opacity */
            border: 1px solid #a9a9a9; /* Add a border to indicate it's disabled */
        }

        #send-button:hover {
            background: #0056b3;
        }

        #file-input {
            display: none;
        }

        #upload-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
            color: #666;
            font-size: 18px;
            font-weight: bold;
            min-width: 32px;
            height: 32px;
        }

        .thumbnail {
            max-width: 50px;
            max-height: 50px;
            border: 2px solid #ddd;
            border-radius: 8px;
            object-fit: cover;
            display: none;
        }
        
        .thumbnail.show {
            display: block;
        }

        .images-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .box-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-box {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            width: 300px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
            border: 1px solid #eee;
        }

        .order-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            width: 100%;
        }

        .order-btn:active {
            transform: translateY(1px);
        }

          .profile-links {
            gap: 20px;
            margin-bottom: 20px;
          }
        
          .profile-links a {
            text-decoration: none;
            color: #635bff;
            font-weight: bold;
            cursor: pointer;
          }
        
          .form-section {
            display: none;
          }
        
          .form-section.active {
            display: block;
          }
        
          .StripeElement {
            box-sizing: border-box;
            width: 100%;
            height: 40px;
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: white;
            margin-bottom: 10px;
            font-size: 16px;
            transition: box-shadow 150ms ease;
          }
        
          button {
            background-color: #635bff;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
          }
        
          .status-message {
            display: none;
            color: green;
            margin-bottom: 10px;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
          }
        
          .status-message.show {
            display: block;
            opacity: 1;
          }
        
          .error-message {
            color: red;
            margin-bottom: 10px;
          }

        .summary-hidden { display: none; }
        .summary-shown { display: inline-block; color: green; margin-left: 10px; }


        #profile-container {
            display: flex;
            flex-direction :column;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
            margin :10px;
            padding : 10px;
        }

