/* Reset default margins and ensure full height */
body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-icon button {
    display: flex;
    align-items: center;
    background-color: #DCE3E1; /* Darker color as requested */
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.chat-icon button:hover {
    background-color: #C5CECC; /* Slightly darker on hover */
    transform: scale(1.05);
}

.chat-icon svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.chat-icon span {
    font-size: 16px;
    font-weight: 500;
}

/* Chat Window */
.chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.chat-header {
    background-color: #DCE3E1;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
}

.chat-header button {
    background: none;
    border: none Chúng
}
/* Reset default margins and ensure full height */
body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-icon button {
    display: flex;
    align-items: center;
    background-color: #DCE3E1; /* Darker color as requested */
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.chat-icon button:hover {
    background-color: #C5CECC; /* Slightly darker on hover */
    transform: scale(1.05);
}

.chat-icon svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.chat-icon span {
    font-size: 16px;
    font-weight: 500;
}

/* Chat Window */
.chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.chat-header {
    background-color: #DCE3E1;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0 10px;
}

.chat-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

.message {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
}

.bot-message {
    background-color: #e0e0e0;
    margin-right: 10px;
}

.user-message {
    background-color: #DCE3E1;
    color: white;
    margin-left: auto;
    margin-right: 10px;
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
}

.chat-footer button {
    background-color: #DCE3E1;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-left: 8px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
}

.chat-footer button:hover {
    background-color: #C5CECC;
}

/* Responsive Design */
@media (max-width: 600px) {
    .chat-window {
        width: 90%;
        bottom: 70px;
        right: 5%;
    }

    .chat-icon button {
        padding: 8px 12px;
    }

    .chat-icon span {
        font-size: 14px;
    }

    .chat-icon svg {
        width: 20px;
        height: 20px;
    }
}