/* Custom Scrollbar Styles for Turuncu Fal
 * This file contains the scrollbar styling for the entire site
 */

/* Webkit browsers (Chrome, Safari, newer versions of Opera) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e05e00;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff6b00 rgba(0, 0, 0, 0.1);
}

/* Edge and IE */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: thin;  /* Firefox */
}

/* Mobil cihazlar için özel scrollbar stilini düzeltme */
@media (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 3px;
    }
    
    * {
        scrollbar-width: thin;
    }
}
