.chatbot-container {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-inner {
    width: 90%;
    max-width: 800px; /* Max width for larger screens */
    height: 90vh; /* Nearly full height */
    max-height: 90vh;
}

.card-body {
    padding: 0;
    overflow: hidden;
}

.chatbot-toggle {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    background: #007bff; /* Bootstrap primary color */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.chatbot-toggle:hover {
    background: #0056b3; /* Darker on hover */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .chatbot-inner {
        width: 95%;
        height: 95vh;
    }
    .chatbot-toggle {
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .chatbot-toggle i {
        font-size: 1.5rem; /* Smaller icon on mobile */
    }
}