/**
 * File: page_styles/feedback_buttons.css
 * Feedback Buttons Styles
 * v1.0.0 - April 2025
 * 
 * These styles apply to the floating feedback buttons used across the site
 */
 
/* Fixed floating feedback buttons */
.feedback-btn-satisfied {
    position: fixed;
    bottom: 179px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.feedback-btn-dissatisfied {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: var(--warning-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.feedback-btn-satisfied:hover {
    background-color: #47a866;
    transform: scale(1.05);
}

.feedback-btn-dissatisfied:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}