 /* Style for the Go to Top and Chatbot button */
    /* Go to Top button styling */
    #goToTop {
        position: fixed;
        bottom: 100px; /* Ensure enough space above the chatbot button */
        right: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 50%;
        width: 60px; 
        height: 60px; 
        display: none; /* Initially hidden */
        justify-content: center;
        align-items: center;
        text-align: center; 
        font-size: 18px; 
        z-index: 1001; /* Ensure it's above other elements */
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out; /* Smooth hover effect */
    }

    #goToTop:hover {
        transform: scale(1.1); /* Hover effect */
    }

        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            max-width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            display: none; /* Initially hidden */
            border-radius: 15px;
            transition: all 0.3s ease-in-out;
        }
        .chatbot-header {
            background-color: #007bff;
            color: white;
            padding: 15px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            text-align: center;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chatbot-body {
            background-color: white;
            border: 1px solid #007bff;
            border-top: none;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            height: 400px;
            max-height: 70vh;
            overflow-y: auto;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center; /* Center content horizontally */
            justify-content: center; /* Center content vertically */
        }
        .chatbot-footer {
            padding: 10px;
            border-top: 1px solid #007bff;
            display: flex;
            align-items: center;
        }
        .chatbot-input {
            flex: 1;
            border: none;
            padding: 10px;
            border-radius: 5px;
            margin-right: 10px;
        }
        .chatbot-send-btn {
            background-color: #007bff;
            border: none;
            color: white;
            border-radius: 5px;
            padding: 10px 15px;
            font-weight: bold;
            cursor: pointer;
        }
        .chat-message {
            margin: 10px 0;
            padding: 15px;
            border-radius: 10px;
            line-height: 1.4;
            font-size: 14px;
            max-width: 90%; /* Limit the width for better appearance */
            text-align: left; /* Center text within the message */
        }
        .chat-message.user {
            background-color: #f1f1f1;
            color: black;
            text-align: right;
            align-self: flex-end;
        }
        .chat-message.bot {
            background-color: #007bff;
            color: white;
            text-align: left;
            align-self: center; /* Center the bot message box */
            margin: 0 auto; /* Center the bot message box horizontally */
        }
        .chat-message.bot a {
            color: #f8d74a;
            text-decoration: underline;
        }
/* Chatbot button */
.toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}        .toggle-btn:hover {
            transform: scale(1.1);
        }
        .close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        .option-box {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center; /* Center items horizontally */
        }
        .option-box ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }
        .option-box li {
            margin: 10px 0;
        }
        .option-btn {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            width: 100%;
            font-weight: bold;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .option-btn:hover {
            background-color: #0056b3;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }