.support-widget-launcher {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 99999;
    cursor: pointer;
}

.support-widget-panel {
    position: fixed;
    right: 16px;
    bottom: 84px;
    width: 320px;
    height: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    z-index: 99999;
    display: none;
    overflow: hidden;
    font-family: inherit;
}

.support-widget-header {
    background: #0ea5e9;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-widget-header h5 {
    margin: 0;
    font-size: 14px;
}

.support-widget-close {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.support-widget-messages {
    padding: 12px;
    height: 320px;
    overflow-y: auto;
    background: #f8fafc;
}

.support-widget-message {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    max-width: 85%;
    font-size: 13px;
    line-height: 1.4;
}

.support-widget-message.user {
    background: #e2f2ff;
    margin-left: auto;
}

.support-widget-message.support {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.support-widget-footer {
    padding: 10px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.support-widget-footer textarea {
    width: 100%;
    height: 60px;
    resize: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
}

.support-widget-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.support-widget-actions button {
    flex: 1;
    padding: 6px;
    border-radius: 8px;
    border: none;
    background: #0ea5e9;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.support-widget-actions button.secondary {
    background: #e5e7eb;
    color: #111827;
}
