/* Hide scrollbar but keep scroll functionality */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* iOS Base Styles */
body { 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Theme Transition */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, color 0.3s ease;
}

/* iOS Input Fields (Filled Style) */
.ios-input {
    background-color: #F2F2F7; /* System Gray 6 */
    border: none;
    border-radius: 12px; /* iOS rounded corners */
    transition: all 0.2s ease;
}
.ios-input:focus {
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px #007AFF;
    outline: none;
}

/* Custom Scrollbar (Hidden/Minimal) */
.custom-scrollbar::-webkit-scrollbar {
    width: 0px; /* Hide scrollbar for cleaner look */
    background: transparent;
}

