/* Horizon - Custom Styles */
/* Note: Most styling is done via Tailwind CSS CDN */
/* This file is for any additional custom styles */

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

/* Hide x-cloak elements until Alpine.js initializes */
[x-cloak] {
    display: none !important;
}

/* Print styles */
@media print {
    .glass {
        background: white;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .gradient-text {
        -webkit-text-fill-color: #0891b2;
        color: #0891b2;
    }
}
