/* Feedback Modal Styles */
.feedback-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 450px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.feedback-modal.show {
    display: block;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.feedback-content {
    padding: 20px;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feedback-header h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-feedback {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.smiley-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.smiley {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.smiley:hover {
    background: #f8f9fa;
}

.smiley.active {
    background: #e9ecef;
}

.smiley i {
    font-size: 24px;
    color: #666;
    margin-bottom: 5px;
}

.smiley.active i {
    color: #86c440;
}

.smiley span {
    display: block;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.feedback-checkboxes {
    margin-bottom: 15px;
}

.checkbox-item {
    margin-bottom: 10px;
}

.checkbox-item label {
    margin-left: 8px;
    color: #666;
}

.feedback-comment textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    margin-bottom: 15px;
}

.submit-feedback {
    width: 100%;
    padding: 10px;
    background: #86c440;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-feedback:hover {
    background: #75b02f;
}

/* Footer Feedback Link */
.footer-feedback-link {
    color: #86c440;
    text-decoration: none;
    cursor: pointer;
}

.footer-feedback-link:hover {
    text-decoration: underline;
} 