/* Create the Info Card above the booking area */
#sb_content::before {
    /* The Content */
    content: "📍 LOCATION & ARRIVAL\A We are located inside Sola Salon, Suite #10.\A Please call us at (909) 767-7875 upon arrival so we can let you in!\A\A ⏰ LATE ARRIVALS\A To ensure you receive your full experience, please arrive on time.\A Late arrivals will result in reduced service time.\A\A ❓ QUESTIONS?\A If you aren’t sure which service to choose, feel free to DM us on Instagram @pinkivyheadspa or book a consultation first.\A\A ⚠️ CANCELLATION POLICY\A Please note: No-shows or cancellations within 24 hours may result in a fee.\A\A 🌿 We can't wait to treat you!";
    
    /* The Styling */
    display: block;
    white-space: pre-wrap; /* Allows the line breaks (\A) to work */
    background-color: #ffffff;
    color: #474747;
    font-size: 15px;
    line-height: 1.6;
    
    /* Box Shape & Shadow */
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Soft shadow */
    border: 1px solid #f0f0f0;
    
    /* The Pink/Green Accent Top Border */
    border-top: 5px solid #023c1e; /* Uses your brand's dark green */
}

/* Optional: Add a subtle animation to make it slide in */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
#sb_content::before {
    animation: slideDown 0.5s ease-out;
}

/* Hide the SimplyBook.me footer copyright */
#footer .copyright {
    display: none !important;
}

/* Hide the footer menu links (Home, Reviews, My Bookings) */
#sb_footer_menu {
    display: none !important;
}

/* Remove the top Hero section (Image, Title, Book button) */
#main-buttons {
    display: none !important;
}