/* Styles for Sklepy page */
.order-action-btn {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    text-align: center;
}

/* Dla telefonów - najmniejszy rozmiar */
@media (max-width: 576px) {
    .order-action-btn {
        font-size: 0.45rem !important;
        padding: 0.08rem 0.15rem !important;
    }
}

/* Dla tabletów i większych ekranów - większe przyciski żeby nie były ucinane */
@media (min-width: 577px) {
    .order-action-btn {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

/* Dla średnich ekranów (tablety) */
@media (min-width: 577px) and (max-width: 992px) {
    .order-action-btn {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.4rem !important;
    }
}

