/* Sarahah - Light Theme Enhancements */

/* Smooth font rendering */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background-color: #10BBB3;
    color: white;
}

/* Focus styles - subtle ring */
*:focus-visible {
    outline: 2px solid #10BBB3;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline-offset: 2px;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #10BBB3 0%, #00A79E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}
