/* Feedback Widget Styles - Simplified with Bootstrap 5 */

/* Floating feedback button (custom positioning, not covered by Bootstrap) */
.feedback-trigger-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.feedback-trigger-btn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6);
}

.feedback-trigger-btn:active {
    transform: scale(0.95);
}

/* Dark mode support for floating button */
[data-bs-theme="dark"] .feedback-trigger-btn {
    background-color: #0d6efd;
}

[data-bs-theme="dark"] .feedback-trigger-btn:hover {
    background-color: #0a58ca;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feedback-trigger-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}
