/* Support Widget Styles */
.support-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-deep);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-widget-btn:hover {
    transform: scale(1.1);
}

.support-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.support-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.support-header {
    background: var(--primary-deep);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.close-support {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.support-body {
    padding: 16px;
    overflow-y: auto;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.support-option-btn:hover {
    background: #f1f5f9;
    border-color: var(--primary);
}

.report-form {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.report-form.active {
    display: flex;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.report-form input,
.report-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}

.report-form textarea {
    min-height: 80px;
    resize: vertical;
}

.file-upload {
    font-size: 0.9rem;
}