.elementor-30444 .elementor-element.elementor-element-701791a{--display:flex;}.elementor-30444 .elementor-element.elementor-element-701791a:not(.elementor-motion-effects-element-type-background), .elementor-30444 .elementor-element.elementor-element-701791a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-c248db5 );}.elementor-30444 .elementor-element.elementor-element-2a853db{--display:flex;}.elementor-30444 .elementor-element.elementor-element-2a853db.e-con{--align-self:center;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-30444 .elementor-element.elementor-element-05036eb{text-align:center;}.elementor-30444 .elementor-element.elementor-element-05036eb .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:32px;font-weight:500;line-height:38px;color:var( --e-global-color-eb51891 );}.elementor-30444 .elementor-element.elementor-element-5323b8d{--display:flex;}.elementor-30444 .elementor-element.elementor-element-5323b8d:not(.elementor-motion-effects-element-type-background), .elementor-30444 .elementor-element.elementor-element-5323b8d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-c248db5 );}@media(min-width:768px){.elementor-30444 .elementor-element.elementor-element-2a853db{--width:50%;}}@media(max-width:1024px) and (min-width:768px){.elementor-30444 .elementor-element.elementor-element-5323b8d{--content-width:600px;}}/* Start custom CSS for shortcode, class: .elementor-element-1d1a7ed */#tukan-app-container {
    max-width: 100%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

#dynamic-category-area { 
    margin-bottom: 15px; 
    width: 100% !important;
}

#current-lesson-header {
    background: #fcfcfc;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #27383e;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#external-title {
    color: #27383e;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
}

#tukan-player-core {
    background: #fff800;
    padding: 35px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(39, 56, 62, 0.2);
}

/* SEEKER JAVÍTÁSA */
.seek-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    color: white;
    background-color: #27383e;
    padding: 20px 15px;
    border-radius: 20px;
    box-sizing: border-box; /* Ez biztosítja, hogy a padding BEFELÉ számítson*/
    width: 100%; /* Ne legyen szélesebb a szülőjénél */
}

.time-display {
    font-size: 20px;
    font-weight: 500;
    min-width: 45px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0; /* Ne hagyjuk, hogy összenyomódjon a szám */
}

#seek-bar {
    flex-grow: 1;
    min-width: 0; /* Ez kritikus: engedi a csúszkának, hogy összébb menjen, ha kell */
    -webkit-appearance: none; /* Alapértelmezett kinézet törlése */
    background: transparent;
    cursor: pointer;
}

/* A sáv (track) stílusa */
#seek-bar::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* A csúszka kör (thumb) JAVÍTÁSA */
#seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fcfcfc;
    margin-top: -5px; /* (Track magasság / 2) - (Thumb magasság / 2) -> (10/2) - (20/2) = -5px */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Firefox javítás */
#seek-bar::-moz-range-track {
    height: 10px;
    background: rgba(255,255,255);
    border-radius: 10px;
}
#seek-bar::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: #fcfcfc;
    border: none;
    border-radius: 50%;
}

.play-wrapper { margin-bottom: 30px; text-align: center; }

.main-action-btn {
    text-align: center;
    background: #fcfcfc;
    color: #27383e;
    border: none;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 32px !important;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.all-controls-row {
    display: flex;
    justify-content: center; /* Középre teszi a gombokat */
    align-items: center;
    gap: 1vw; /* Távolság a körök között */
    margin-top: 10px;
}

.ctrl-btn, .ctrl-select {
    background: #8e8700;
    border: 1px solid #8e8700;
    color: #fcfcfc;
   width: 50px;
    height: 75px;
    min-width: 75px; /* Megakadályozza az összenyomódást */
    
    border-radius: 50%; /* Ez csinál belőle kört */
    font-size: 20px !important;
    font-weight: 900 !important;
    cursor: pointer;
    
    /* Tartalom (szöveg/ikon) középre igazítása a körön belül */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
    margin: 0;
    transition: background 0.3s, transform 0.2s;
}

.ctrl-select {
    appearance: none;
    -webkit-appearance: none;
    text-align: center;
    text-align-last: center; /* Firefoxhoz a szöveg középre tételéhez */
    
    /* Mivel kör, a nyilat levesszük, mert eltolná a szöveget */
    background-image: none; 
    padding-right: 0;
}

.ctrl-btn:hover, .ctrl-select:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: #27383e;
}

.ctrl-btn:active {
    background: rgba(255,255,255,0.25);
    transform: scale(0.9);
    color: #27383e;
}

.list-section { 
    margin-top: 25px !important; 
    font-size: 26px !important; 
}

.section-title { 
    font-size: 32px !important; 
    color: #27383e;  
    margin-bottom: 25px !important; 
    font-weight: 900; 
    text-transform: uppercase; 
}

.full-list-dropdown summary {
    cursor: pointer;
    list-style: none;
    background: #fcfcfc;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid #27383e;
    font-weight: 500;
    color: #27383e;
}

#full-playlist { 
    margin-top: 10px; 
    max-height: 350px; 
    overflow-y: auto; 
    
}

.playlist-item {
    background: #fcfcfc;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #27383e;
    font-size: 26px !important;
    color: #27383e;
}

.playlist-item.active { 
    background: #fcfcfc; 
    border: 3px solid #27383e; 
    font-weight: 900; 
    
}/* End custom CSS */