/* Kompaktní zobrazení ceny a tlačítka v prvním kroku */

.price-button-container {
    margin-top: 40px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 600px;
    box-shadow: none;
}

.predplatne-cena-blok {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    text-align: center !important;
}

.predplatne-cena-text {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    display: block;
    margin-bottom: 5px;
    padding-top: 12px;
}

#predplatne-cena {
    color: #00466A;
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.step-buttons-inline {
    margin: 0;
    text-align: center;
}

.step-buttons-inline .next-step-btn {
    margin: 0;
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .price-button-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .step-buttons-inline {
        width: 100%;
    }
    
    .step-buttons-inline .next-step-btn {
        width: 100%;
    }
}