/**
 * Pending zoom widget styles
 * Fixed bottom-left, above the loading spinner, matching its visual treatment.
 */
#pending-zoom-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
}

#pending-zoom-widget:hover {
    opacity: 1;
}

#pending-zoom-widget button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 2px 5px;
    font-size: 14px;
    line-height: 1;
    border-radius: 4px;
    color: #333;
}

#pending-zoom-widget button:hover {
    background: #eee;
}

#pending-zoom-widget .zoom-fit-btn,
#pending-zoom-widget .restore-btn {
    font-size: 12px;
    background: #0d6efd;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
}

#pending-zoom-widget .zoom-fit-btn:hover,
#pending-zoom-widget .restore-btn:hover {
    background: #0b5ed7;
}
