/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	then other page styles
*/
 #events h3   {
	/* add your css rule here */
}


 #events p.duration, #events div.duration   {
	/* add your css rule here */
}


 #events p.description, #events div.description   {
	/* add your css rule here */
}


 #events .selectedEvent   {
	/* add your css rule here */
}


 #events input.reserve_time_btn   {
	/* add your css rule here */
}


 #events input.select_another_btn   {
	/* add your css rule here */
}


 #eventForm #start_date-block-container h3, #eventForm #timeline-container h3   {
	/* add your css rule here */
}


 #eventForm #save_button   {
	/* add your css rule here */
}


 div.ui-widget-content   {
	/* add your css rule here */
}


 div.ui-widget-header   {
	/* add your css rule here */
}


 #timeline-container table.timeline   {
	/* add your css rule here */
}


 .timeline td.not_worked_time   {
	/* add your css rule here */
}


 .timeline td.free_time   {
	/* add your css rule here */
}


 .timeline td.selected_time   {
	/* add your css rule here */
}


 .timeline td.reserved_time   {
	/* add your css rule here */
}


 div#loading   {
	/* add your css rule here */
}


 #start_date-block-container .zend_form dt, start_date-block-container .zend_form dt b, start_date-block-container .zend_form dd label   {
	/* add your css rule here */
}

Then add this:

css
Copy
Edit
/* 🔒 Completely remove Google & Facebook social login buttons in widgets */
.icon--google,
.icon--facebook,
[class*="google-login"],
[class*="facebook-login"],
[class*="social-login"],
a[href*="google"],
a[href*="facebook"],
button[class*="google"],
button[class*="facebook"] {
    display: none !important;
}

/* 🔇 Hide any paragraph or div before the social buttons */
.sb-login-wrapper .sb-login--social,
.sb-login-wrapper .sb-login--social-title,
.sb-login-wrapper .sb-login-provider-buttons,
.sb-login-wrapper .sb-login-provider-buttons ~ p,
.sb-login-wrapper .sb-login-provider-buttons ~ div,
.sb-login-wrapper p:has(.icon--google),
.sb-login-wrapper p:has(.icon--facebook) {
    display: none !important;
}

.client-login-bar .social .txt {
    display: none !important;
}

#sb_book_btn {
    width: auto !important; /* allow the button to grow */
    padding-left: 1em;
    padding-right: 1em;
}

#sb_book_btn span {
    visibility: hidden;
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;
}

#sb_book_btn span::after {
    content: "Proceed to payment";
    visibility: visible;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
