/* This removes social media options from login screen */
.WaGadgetAuthorizationRequired .openAuthFormContainer {
display: none !important;
} 
/* This removes social media options from user profile screen */
#socialLoginContainer, #idSocialLoginContainer {
	display: none;
} 
.slide-container {
    position: relative;
}
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 60vw; /* Occupies exactly 70% of the entire page width */
    background-color: rgba(255, 255, 255, 0.8) !important;        border-radius: 10px;
    pointer-events: none; /* Allows users to still click slideshow arrows underneath */
}

/* Blocks / hides buttons on system 'Unsubscribe from emails' system page  */
#ctl00_ContentArea_ConfirmBtn,
#ctl00_ContentArea_CancelBtn {
	pointer-events: none !important;
	visibility: hidden !important;
}

/* Block email subscription modifications on profile page */
/* Keep subscription rows visible but non-interactive */
#idEventRemindersContainer .fieldSubContainer,
#idEmailNewsContainer .fieldSubContainer {
	pointer-events: none !important;
}
/* Keep checkboxes readable even when disabled */
#idEventRemindersContainer input[type="checkbox"],
#idEmailNewsContainer input[type="checkbox"] {
	opacity: 1 !important;
	filter: none !important;
	cursor: default !important;
}