/* RX Contact — Base Styles */
/* Most styling handled by Tailwind CDN + inline <style> in header.php */
/* This file is for any custom overrides */

::selection {
    background-color: #DBEAFE;
    color: #0F172A;
}

/* Smooth reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
