.acs-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.acs-chat-button {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.acs-chat-container {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.acs-chat-container.minimized {
    /* width: 50px; */
    /* height: 50px; */
    /* border-radius: 10px; */
    /* overflow: hidden; */
}

.acs-chat-header {
    height: 60px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}

.acs-chat-messages {
    height: calc(100% - 120px);
    overflow-y: auto;
    padding: 15px;
    color: black;
}

.acs-message {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.acs-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.acs-message-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: black;
}

.acs-chat-input {
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    background: transparent;
    margin: 0 10px;
}

.acs-chat-input textarea {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 10px;
    resize: none;
    height: 40px;
    color: black;
    background: rgba(255, 255, 255, 0.9);
    min-width: 300px;
    max-width: 100%;
}

.acs-send-button {
    padding: 0 20px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #007bff;
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

.acs-close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: black;
    position: absolute;
    right: 10px;
    top: 10px;
}

.acs-minimize-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: black;
    position: absolute;
    right: 40px;
    top: 10px;
}

.acs-chat-button.minimized {
    display: flex;
    width: 200px;
    height: 60px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.acs-chat-icon {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}