/* Global dark mode styles - shared across all pages */
/* Pages can include this if they need dark mode support */

html, body {
    height: 100%;
    background-color: #0f172a !important; /* slate-900 */
    color: #e5e7eb !important; /* gray-200 */
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Safe-area padding for iOS notch */
.safe-area {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}



