/* CSS to clean up the share.html page */

/* Hide "This bird was identified using text description" alert banner */
body.shared-page .info-type-banner {
    display: none !important;
}

/* Hide "Description submitted by: Caloy" attribution */
body.shared-page .attribution-text {
    display: none !important;
}

/* Hide "Viewing a shared bird identification" banner */
body.shared-page .alert.alert-info[style*="background-color: #e0f2f1"] {
    display: none !important;
}

/* Hide "Multiple bird species detected" alert */
body.shared-page .alert.alert-info[style*="background-color: #cff4fc"] {
    display: none !important;
}

/* Hide all alerts for cleaner interface */
body.shared-page .alert-info {
    display: none !important;
}

/* Just completely hide the attribution section for text/sound identifications 
   This is the simplest approach to ensure nothing shows up */
body.shared-page[data-identification-type="text"] .attribution-section,
body.shared-page[data-identification-type="sound"] .attribution-section {
    display: none !important;
}