.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    resize: both;
    overflow: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
	z-index:99999;
}

.chatbot-container.fullscreen {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    resize: none;
}

.chatbot-header {
    padding: 15px;
    background: #007bff;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.message {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
}

.message.user {
    background: #007bff;
    color: white;
    margin-left: auto;
}

.message.bot {
    background: #e9ecef;
    color: black;
    margin-right: auto;
}

.feedback-buttons {
    margin-top: 5px;
}

.feedback-buttons button {
    margin-right: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.chatbot-form {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 5px;
}

.chatbot-submit-button {
    padding: 8px 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.correction-form {
    padding: 10px;
}

.chatbot-correction-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
}

.submit-correction-btn {
    padding: 5px 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reopen-chat {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    width: 60px;
    height: 60px;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    transition: background 0.6s ease;
	z-index:99999;
}

.reopen-chat:hover {
    background: #44b821;
}

.control-button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.control-button:hover {
    opacity: 0.8;
}

.header-controls {
    display: flex;
    align-items: center;
    width: 48px;
}

.feedback-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    font-size: 16px;
    color: #555;
    transition: color 0.2s ease;
}

.feedback-buttons button:hover {
    color: #007bff;
}