/**
 * LK Feedback - Selection Popover Styles
 */
.lkfeedback-popover {
    position: fixed;
    z-index: 99999;
    animation: lkFeedbackFadeIn 0.15s ease-out forwards;
    pointer-events: auto;
}

.lkfeedback-popover button {
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 0 14px;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lkfeedback-popover button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@keyframes lkFeedbackFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal styling matching site's uk-alert soft grey tone */
#lkfeedback-error-modal .uk-modal-dialog {
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Quote scrollbar styling: subtle and without browser stepper arrow buttons */
#lkfeedback-modal-quote {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

#lkfeedback-modal-quote::-webkit-scrollbar {
    width: 5px;
}

#lkfeedback-modal-quote::-webkit-scrollbar-track {
    background: transparent;
}

#lkfeedback-modal-quote::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

#lkfeedback-modal-quote::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Modern toast notification: sleek dark pill with emerald checkmark */
.uk-notification-message.uk-notification-message-lkfeedback-toast {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    text-align: center !important;
    width: auto !important;
    max-width: 90vw !important;
    margin: 0 auto 12px auto !important;
}

.uk-notification-message.uk-notification-message-lkfeedback-toast .lkfeedback-toast-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1e293b;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.1px;
}

.uk-notification-message.uk-notification-message-lkfeedback-toast .lkfeedback-toast-icon {
    color: #34d399;
    flex-shrink: 0;
}



