.helpchat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff4c4c;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 1000;
}

.helpchat-modal {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    display: none;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: #ddd;
}

.helpchat-modal select,
.helpchat-modal textarea {
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    resize: vertical;
}

.helpchat-modal button {
    background: #ff4c4c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}