.chatbox-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #674D66;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.chatbox-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none; 
    flex-direction: column;
}
.chatbox-header {
    background-color: #674D66;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
.chatbox-messages {
    padding: 10px;
    height: 280px;
    overflow-y: auto;
    border-bottom: 2px solid #eee;
}

.chatbox-input-container {
    display: flex;
    padding: 10px;
}
.chatbox-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chatbox-send-btn {
    background-color: #674D66;
    color: white;
    padding: 8px 15px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.chatbox-send-btn:hover {
    background-color: #EBD6DC;
}

.chatbox-message {
    margin: 5px 0;
}
.user-message {
    text-align: right;
    background-color: #EBD6DC;
    color: white;
    padding: 8px;
    border-radius: 10px;
    max-width: 70%;
    margin-left: auto;
}
.bot-message {
    text-align: left;
    background-color: #f1f1f1;
    color: #333;
    padding: 8px;
    border-radius: 10px;
    max-width: 70%;
}