/* Custom utilities missing from Tailwind */

/* Smooth scrollbar styling */
body {
    scrollbar-width: thin;
    scrollbar-color: #385144 #f8fafc;
}

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

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

body::-webkit-scrollbar-thumb {
    background-color: #385144;
    border-radius: 10px;
}

/* Hide scrollbar for the mock phone UI */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
