        /* --- CSS Štýlovanie --- */
        .video-carousel-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            font-family: Arial, sans-serif;
            text-align: center;
        }

        /* Responzívny kontajner pre video (pomer strán 16:9) */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; 
            height: 0;
            overflow: hidden;
            background: #000;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Ovládacie prvky (tlačidlá a indikátory) */
        .carousel-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .carousel-btn {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .carousel-btn:hover {
            background-color: #1a252f;
        }

        /* Spodné bodky (indikátory pozície) */
        .indicators {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: #bdc3c7;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s;
        }

        .dot.active {
            background-color: #2c3e50;
            transform: scale(1.2);
        }

        .dot:hover {
            background-color: #7f8c8d;
        }