 #organizations_member_list_0_1 > section > button{display:none}.alert-secondary{color:#20282c;background-color:transparent;border:none}/*Hide Interested*/ #events_event_invitees_1_1>section>div:nth-child(2)>div:nth-child(2){display:none}/*Hide Not Interested*/ #events_event_invitees_1_1>section>div:nth-child(3)>div:nth-child(2){display:none}/*Hide Going*/ #events_event_invitees_1_1>section>div:nth-child(2)>div:nth-child(1){display:none}/*Hide Invited*/ #events_event_invitees_1_1>section>div:nth-child(3)>div:nth-child(1){display:none}.btn.btn-lg{white-space:normal;color:#fff;background-color:#00C5B4;border-color:#00C5B4;color:#fff;font-size:20px;font-weight:700;width:50%;padding:10px 12px;text-align:center;line-height:1.42857143;min-width:160px;border-radius:40px;text-transform:uppercase;margin:5px 0;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;font-family:'Scandia',sans-serif}.generic-detail-img-top{object-fit:contain;max-height:600px}@media screen and (min-width:993px){.navbar-expand-lg .navbar-collapse{font-size:0.8rem;text-transform:none;font-weight:500}}/*footer*/ ul.social-links.square{display:inline-flex;list-style:none;gap:10px;justify-content:flex-start;padding:0;color:white}ul.social-links.square li a{color:white}.footerWrapper{padding-top:40px}ul.footer-links{list-style-type:none;padding-left:10px}ul.footer-links li a{color:white}ul.social-links.square li a:hover{background:#3b5998}ul.social-links.square li a{padding:5px 5px 5px 10px;width:20px;height:10px;margin:0 auto;background:#CE2026;border:1px solid #CE2026;color:#ffffff}h1{color:#002855 !important;font-size:32px}h2{color:#d61b26;font-size:22px}.generic-option-text{color:#002855;/* change to any color you want */ font-size:12px;font-style:italic;font-weight:bold}[data-option-name="price"]{color:#e74c3c;font-size:18px}h5{color:#000000;font-size:16px}/*Promotional Items Font Size*/ .generic-body.ck-content div[id^="preview_"]{font-size:14px !important}/* Also targets the 'hidden' full-text version just in case it toggles */ .generic-body.ck-content div[id^="content_"]{font-size:14px !important}div[id^="preview_"] .btn,div[id^="preview_"] .btn a{font-size:14px !important;padding:0 !important;vertical-align:baseline !important;line-height:1.2 !important}/*Sponsor Price*/ To center the price on its own line,we need to adjust the alignment of the flex container we just targeted. Since the parent container is now a column,we use align-items:center and ensure the text itself is centered within its block. Add this to your CSS:CSS /* 1. Center the container contents (Category & Price) */ .generic-body + div.d-flex{display:flex !important;flex-direction:column !important;align-items:center !important;/* Centers children horizontally */ text-align:center !important;margin-top:10px !important;width:100% !important}/* 2. Center the Category text */ .generic-body + div.d-flex span:first-child{display:block !important;width:100% !important;text-align:center !important}/* 3. Center the Price specifically */ span.generic-option[data-option-name="price"]{display:block !important;width:100% !important;text-align:center !important;margin-left:0 !important;margin-right:0 !important}/*Center Sponsor Type*/ span.generic-option[data-option-name="type"]{display:block !important;width:100% !important;text-align:center !important;margin-bottom:4px !important;/* Space between category and price */}/* Ensure the parent container is allowing the centering */ .generic-body + div.d-flex{display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important}