/**
 * Feedback Button Styles
 * Styles for the floating feedback button and modal
 */

.feedback-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.feedback-btn i {
    font-size: 16px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .feedback-btn {
        right: 15px;
        bottom: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .feedback-btn span {
        display: none;
    }
}

/* Feedback modal enhancements */
#feedbackModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#feedbackModal .modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

#feedbackModal .modal-header .btn-close {
    filter: invert(1);
}

#feedbackModal .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#feedbackModal .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
}

#feedbackModal .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
}