/**
 * Custom CSS for DearFlip
 * Hides specific UI elements and customizes the appearance
 */

/* Hide the sound button */
.df-ui-btn.df-ui-sound {
    display: none !important;
}

/* Hide the share button */
.df-ui-btn.df-ui-share {
    display: none !important;
}

/* Hide loading text completely */
.df-loading-info {
    display: none !important;
}

/* Additional protection against right-click saving */
.df-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.df-container img, 
.df-container canvas,
.df-container .df-book-page {
    pointer-events: none;
} 