/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
/* LTR */
.page-id-503 {
    direction: ltr !important;
}
/* דסקטופ בלבד */
@media (min-width: 1025px) {

    /* Chrome, Edge, Safari */
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #000000; /* רקע שחור */
        box-shadow: inset 0 0 5px rgba(0,0,0,0.8);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #00bcdb, #009bb5);
        border-radius: 12px;
        border: 2px solid #000000;
        box-shadow: 
            0 0 8px rgba(0,188,219,0.6),
            inset 0 0 4px rgba(255,255,255,0.2);
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #33d6eb, #00bcdb);
        box-shadow: 
            0 0 12px rgba(0,188,219,0.9),
            inset 0 0 6px rgba(255,255,255,0.3);
    }

    ::-webkit-scrollbar-thumb:active {
        background: #008aa0;
    }

    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: #00bcdb #000000;
    }
}