    /* Zarovnání do jedné linky */
    body .shipping-options-layout tbody {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        border: none !important;
    }

    /* Skrytí popisku "Dostupnost" a reset tabulky */
    body .shipping-options-layout th { display: none !important; }
    body .shipping-options-layout tr, 
    body .shipping-options-layout td { 
        display: block; 
        border: none !important; 
        padding: 0 !important; 
    }

    /* Přidání tučné textové tečky před hodnotu dostupnosti */
    body .availability-label::before {
        content: "• "; /* Znak tučné tečky a mezera */
        font-weight: 900;
        margin-right: 5px;
        font-size: 1.3em; /* Aby byla tečka výraznější */
    }

    /* Vzhled textů */
    body .availability-label, 
    body .shipping-options {
        font-size: 16px;
        color: #000;
        font-weight: bold;
        text-decoration: none;
    }

    body .shipping-options {
        text-decoration: underline;
        font-weight: normal;
    }
