/* Aplikace fontu Inter na celý web */
        body {
            font-family: 'Inter', sans-serif;
        }
        .farm-gray-light { background-color: #f9f9f9; }
        
        /* Slideshow styly */
        .event-slide {
            transition: opacity 0.5s ease-in-out;
        }
        
        .event-slide.active {
            opacity: 1 !important;
        }
        
        /* Custom scrollbar pro seznam eventů */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #6f9a37;
            border-radius: 3px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #5a7c2d;
        }
