
#action_Beatch{
 box-sizing: border-box;
            margin: 0 auto;
            width: 800px;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            color: #333;
            display: none;
            flex-direction: column;
            align-items: center;
            padding: 20px;

}
        .Beatch-header-title {
            margin: 20px 0;
            color: #1a4f76;
            text-align: center;
            font-size: 1.8rem;
        }

        /* Container του Slider */
        .Beatch-slider-container {
            max-width: 800px;
            width: 100%;
            position: relative;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            overflow: hidden;
        }

        /* Slides */
        .Beatch-mySlides {
            display: none;
            position: relative;
        }

        .Beatch-mySlides img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 500px;
            object-fit: cover;
        }

        /* Λεζάντα κειμένου πάνω/κάτω από την εικόνα */
        .Beatch-caption-container {
            background-color: #58a6ff;/*rgba(26, 79, 118, 0.95);*/
            color: #fff;
            padding: 20px;
            text-align: left;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .Beatch-step-number {
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .Beatch-caption-container p {
            margin-bottom: 10px;
        }

        .Beatch-caption-container p:last-child {
            margin-bottom: 0;
        }

        /* Κουμπιά Πλοήγησης (Πίσω / Επόμενο) */
        .Beatch-prev, .Beatch-next {
            cursor: pointer;
            position: absolute;
            top: 40%;
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.4);
            border: none;
        }

        .Beatch-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .Beatch-prev:hover, .Beatch-next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* Τελεία πλοήγησης στο κάτω μέρος */
        .Beatch-dot-container {
            text-align: center;
            padding: 15px;
            background: #fff;
            width: 100%;
        }

        .Beatch-dot {
            cursor: pointer;
            height: 13px;
            width: 13px;
            margin: 0 5px;
            background-color: #58a6ff;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.6s ease;
        }

        .Beatch-active, .Beatch-dot:hover {
            background-color: #1a4f76;
        }

        /* Εφέ αλλαγής εικόνας */
        .Beatch-fade {
            animation-name: fade;
            animation-duration: 0.5s;
        }

        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }
