/* Feedback button styles */
.feedback-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--bs-primary);
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: transform 0.2s;
}

.feedback-button:hover {
    transform: translateY(-2px);
}

.feedback-button i {
    width: 18px;
    height: 18px;
}

/* Modal customization */
#feedbackModal .modal-content {
    border-radius: 12px;
}

#feedbackModal .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#feedbackModal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .feedback-button {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
    }
}
