/* 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: none;
}

button:focus-visible,
a:focus-visible {
    outline: none;
}

/* 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;
    }
}

/* RTL Support - Flip directional icons */
[dir="rtl"] .rtl-flip {
    transform: rotate(180deg);
}
