.lc-chat-bubble {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #0a5c12;
    color: white;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000
}

.lc-chat-window {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.lc-chat-header {
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lc-chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #067268;
}

.lc-chat-footer {
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #067268;
}

.lc-chat-message {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.lc-chat-message.sent {
    align-items: flex-end;
}

.lc-chat-message.received {
    align-items: flex-start;
}

.lc-chat-message .lc-bubble {
    padding: 10px;
    border-radius: 20px;
    max-width: 75%;
}
.lc-chat-message.sent .lc-bubble {
    background-color: #3d968e;
    color: white;
}
.lc-chat-message.received .lc-bubble {
    background-color: #055a52;
    color: white;
}

.lc-chat-message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
/* Hide the default file input */
.custom-file-input {
    display: none;
}

/* Style the label to look like an icon */
.custom-file-label {
    cursor: pointer;
    font-size: 24px; /* Adjust size as needed */
    color: #555;    /* Icon color */
    margin: 0 10px; /* Add some space around the icon */
    display: flex;
    align-items: center;
}


/* Tawk.to বক্স */
#tawkto-widget-container {
    position: fixed;
    bottom: 20px; /* সর্বনিম্নে থাকুক */
    right: 20px;
    z-index: 999; /* যাতে আপনার চ্যাট বক্স এর নিচে থাকে */
}
