/* Mobil responsive javítások a Jackpots widget-hez */

/* Widget konténer full width beállítások */
.elementor-widget-jackpots {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jackpot-widget-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Alapértelmezett konténer javítások */
.jackpot-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobil optimalizációk */
@media (max-width: 767px) {
    .elementor-section .elementor-container .elementor-widget-jackpots,
    .elementor-widget-jackpots {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }
    
    .jackpot-widget-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    .jackpot-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 10px;
        box-sizing: border-box;
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .jackpot-card {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        padding: 1.2rem;
        box-sizing: border-box;
        border-radius: 15px;
    }
    
    /* Fix az info értékek jobbra igazításához */
    .info-value {
        text-align: right;
        font-weight: 600;
    }
    
    /* Mobilon kisebb betűméretek */
    .jackpot-title {
        font-size: 1.3rem;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
}

/* Extra kis képernyők */
@media (max-width: 480px) {
    .jackpot-container {
        padding: 5px;
        gap: 0.8rem;
    }
    
    .jackpot-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .jackpot-title {
        font-size: 1.1rem;
    }
    
    .jackpot-amount {
        font-size: 1.8rem;
    }
    
    .timer-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
    }
}

/* Elementor editor specifikus javítások */
.elementor-editor-active .elementor-widget-jackpots,
.elementor-editor-preview .elementor-widget-jackpots {
    width: 100% !important;
    max-width: 100% !important;
} 