/* Clean Light Mode Utilities */
.glass-surface {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark .glass-surface {
    border-color: transparent;
}

.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, #E2E8F0 1px, transparent 1px),
        linear-gradient(to bottom, #E2E8F0 1px, transparent 1px);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #F8FAFC;
}

body::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

@media (min-width: 768px) {

    body,
    a,
    button,
    input,
    textarea,
    select,
    [role="button"],
    .cursor-pointer {
        cursor: none !important;
    }
}