/* Feature Feedback Popup Styles */
.feature-feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-feedback-popup {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-feedback-overlay.visible {
    opacity: 1;
}

.feature-feedback-overlay.visible .feature-feedback-popup {
    transform: translateY(0);
}

.ff-title {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ff-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ff-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ff-star {
    font-size: 1.75rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.ff-star:hover,
.ff-star.active {
    color: #ffc107;
}

.ff-comment {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.ff-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.ff-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.ff-btn-secondary {
    background: #f1f1f1;
    color: #333;
}

.ff-btn-secondary:hover {
    background: #e5e5e5;
}

.ff-btn-primary {
    background: #007bff;
    color: white;
}

.ff-btn-primary:hover {
    background: #0056b3;
}

/* === THEMES === */

/* Theme 1: Modern Dark */
.ff-theme-dark .feature-feedback-popup {
    background: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
}
.ff-theme-dark .ff-desc { color: #aaa; }
.ff-theme-dark .ff-comment { 
    background: #2d2d2d; 
    border-color: #444; 
    color: #fff; 
}
.ff-theme-dark .ff-btn-secondary { background: #333; color: #fff; }
.ff-theme-dark .ff-btn-secondary:hover { background: #444; }

/* Theme 2: Glassmorphism */
.ff-theme-glass .feature-feedback-popup {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Theme 3: Colorful Gradient Header */
.ff-theme-gradient .feature-feedback-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
}

/* Theme 4: Minimalist Border */
.ff-theme-minimal .feature-feedback-popup {
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    border-radius: 0;
}
.ff-theme-minimal .ff-btn {
    border-radius: 0;
}
.ff-theme-minimal .ff-btn-primary {
    background: #000;
}
.ff-theme-minimal .ff-comment {
    border-radius: 0;
    border: 1px solid #000;
}
