


@font-face {
    font-family: "Source_Sans_Bold";
    src:url("../css/font/Source_Sans_3/static/SourceSans3-Black.ttf"); format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Source_Sans_Regular";
    src:url("../css/font/Source_Sans_3/static/SourceSans3-Regular.ttf"); format('truetype');
    font-weight: 200;
    font-style: normal;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --big-font: 'Source_Sans_Bold', sans-serif;
    --main-font: 'Source_Sans_Regular', sans-serif;
    --bold-font: 'Source_Sans_Regular', sans-serif;
    --color-bg: #020202;
    --color-text: rgb(236, 235, 235);
    --tmava-modra: #060c47;
    --orange: #f29313;
    --orange-soft: #f39200;
    --container-blue: #090657;
    --container-seda: #28273a;
    --orange-ikona: rgba(255, 165, 0, 0.85);
    --modra: #0060aa;
    --bg-table-main: #ffffff;
    --border-table: #dddddd;
}
/* BASIC */

body {
    font-family: var(--main-font);
    background-color: var(--color-bg);
    font-size: 1.2rem;
    background: linear-gradient(-180deg, #BCC5CE 0%, #929EAD 98%), radial-gradient(at top left, rgba(255,255,255,0.30) 0%, rgba(0,0,0,0.30) 100%);
}

p{
    line-height: 1.6em;
    text-align: justify;
    margin: 10px 0;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.zarovnat-vlevo{
    text-align: left;
}

.mala{
    font-size: 1.4em;
}

strong{
    font-family: var(--big-font);
    font-weight: 400;
}

.header-container {
    display: flex;
    flex-direction: row;      /* Vždy v řádku */
    flex-wrap: nowrap;        /* Zákaz skoku ikony nad/pod text */
    gap: 8px;                /* Mezera mezi prvky */
    align-items: center;      /* KLÍČOVÉ: svisle vycentruje ikonu a text proti sobě */
    justify-content: flex-start;
}

h1{
    font-size: clamp(2.2rem, 8vw, 2.9rem);
    font-family: var(--bold-font);
    color: var(--orange-soft);
    margin:0;
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    font-family: var(--bold-font);
    color: var(--orange-soft);
    margin: 10px 0;
}

h3{
    font-family: var(--bold-font);
    color: var(--orange-soft);
    margin: 15px 0;
}
.modra{
    font-family: var(--big-font);
    font-size: 1.5em;
    color: var(--modra)
}
.mensi{
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin: 20px 0;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}


/* LAYOUT */
.container
{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container-konec{
    padding: 80px 0;
    background: #1c1d25;
    color: var(--color-text);
}
.container-cerna {
    padding: 80px 0;
    background: #004e92;
    color: var(--color-text);
}

.container-svetla {
    padding: 80px 0;
    color: black;
}

.container-tarif {
    padding: 80px 0;
    color: var(--color-text);

    position: relative; /* Nutné pro správné vrstvení */
    z-index: 1;
}


.tarify-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;            /* Mezera mezi tarify */
    margin-top: -140px; /* Vytlačí tarify dolů přes okraj kontejneru */
    position: relative;
    z-index: 2;           /* Zajistí, že tarify budou nad dalším blokem */
}

/* Samotná karta tarifu */
.tarify {
    background-image: url('../images/tarify-bila.png');
    background-position: left;
    background-color: #efa040;
    width: 300px;
    height: 380px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--tmava-modra);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarify:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cena-tarifu{
    font-size: 2.0rem;
    font-family: var(--big-font);
    color: var(--color-text);
    margin: 10px 0;
}

.tarify .button-tarifu{
    font-size: 0.8em;
    display: inline-block;
    max-width: 150px;
    margin: 10px 5px 10px 5px;
    padding: 8px 16px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--modra);
    text-transform: uppercase;
    margin-top: auto;
}

.button-tarifu:hover {
    transition: all 0.5s ease-out;
    background: var(--tmava-modra);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color:  #ffffff;
}


@media (max-width: 992px) {
    .tarify-wrap {
        margin-top: -100px; /* Zmenšený přesah pro tablety */
        gap: 15px;
    }
    .tarify {
        width: 220px;       /* Zúžení karet, aby se vešly vedle sebe */
    }
}

/* Mobily (šířka pod 768px) */
@media (max-width: 768px) {
    .tarify-wrap {
        flex-direction: column; /* Tarify se seřadí pod sebe */
        align-items: center;
        margin-top: -80px;      /* Menší přesah na mobilu */
        gap: 20px;              /* Vertikální mezera mezi kartami */
    }
    .tarify {
        width: 100%;            /* Karta se roztáhne na plnou šířku */
        max-width: 340px;       /* Maximální šířka, aby nebyla moc široká */
    }

    /* Nutná úprava pro předchozí sekci v HTML */
    .predchozi-sekce {
        padding-bottom: 100px !important; /* Zmenšení volného prostoru nad kontejnerem */
    }
}

.logo-dole{
    width:100px;
    margin: 0 0 20px 0;
    border-radius: 21px;
    background: white;
    overflow: hidden;
}

.button{
    font-size: 0.8em;
    display: inline-block;
    max-width: 250px;
    margin: 20px 5px 10px 5px;
    padding: 8px 35px 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
    float: right;
}

.button:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}

.container-button {
    display: flex;
    justify-content: center; /* Horizontální vystředění */
    /* align-items: center; */ /* Volitelné: Vertikální vystředění, pokud má kontejner výšku */
}

.button-vice{
    font-size: 0.8em;
    display: inline-block;
    max-width: 350px;
    margin: 20px 5px 10px 5px;
    padding: 8px 35px 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;

}

.button-vice:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}

.clearfix{
   clear: both;
}

ul.seznam{
    margin: 15px;
    padding-left: 2rem;
    cursor: pointer;
}

ul.diagram{
    list-style: url("../images/diagram-3-fill.svg") outside;
}

ul.shield{
    list-style: url("../images/shield-fill-check.svg") outside;
}

ul.souhlas{
    list-style: url("../images/check2-circle.svg") outside;
}

ul.seznam, li.seznam{
    margin-bottom: 10px;
    line-height: 1.6em;
}

ul.seznam-dokumenty{
    margin: 15px;
    padding-left: 1rem;
    list-style: url("../images/file-earmark-pdf.svg") outside;
   line-height: 1.6em;
    font-size: 1.0rem;
}

ul.seznam-bez-svg {
    list-style: none;
}

    @media (min-width: 970px) {
        .rowe {
            display: flex;
        }

        .cols {
            width: 100%;
        }

        .cols + .cols {
            margin-left: 2em;
        }


    }

    @media screen and (max-width: 800px){
        .skryt{
            display: none;
        }

    }


@media (orientation: landscape) {
    body {
        flex-direction: row;
    }
}

@media (orientation: portrait) {
    body {
        flex-direction: column;
    }
}

.cite{
   font-style: italic;
    color: var(--orange-soft);
    margin: 10px 0;
    background-color: rgba(104, 103, 103, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    line-height: 1.6;
}

.odstavec-orange{
    background-color: rgba(104, 103, 103, 0.4);
    color: white;
    margin: 25px 0;
    padding: 25px;
    border-radius: 10px;
    line-height: 1.6;
}

.newsletter-form {
    text-align: left;
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    width: 90%;
}
.newsletter-form h3 {
    margin-top: 0;
    text-align: center;
}
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
}
.newsletter-form input[type="email"]::placeholder {
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #777;
}
.newsletter-form label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}
.newsletter-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.newsletter-form .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;

}
.newsletter-form .checkbox-container label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}
.newsletter-form button {
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
    padding: 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    cursor: pointer;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
}
.newsletter-form button:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}
.newsletter-form a{
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
}
.newsletter-form a:hover{
    text-decoration: none;
    color: var(--orange-soft);
}

.newsletter-form a {
    font-size: 0.875rem;
    color: var(--orange-soft);
    text-decoration: none;
    padding-bottom: 1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
    background-image: linear-gradient(
            transparent calc(100% - 1px),
            var(--orange-soft) 1px
    );

    transition: background-size .3s ease-in-out;

    &:hover {
        background-size: 0 100%;
        color: var(--orange-text);
    }
}

.odkazhover{
    color: var(--orange-soft);
    text-decoration: none;
    padding-bottom: 1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
    background-image: linear-gradient(
            transparent calc(100% - 1px),
            var(--orange-soft) 1px
    );

    transition: background-size .3s ease-in-out;

    &:hover {
        background-size: 0 100%;
        color: var(--orange-text);
    }
}

.footer{
    font-size: 1.0rem;
    line-height: 1.6;
}


.custom-counter {
    margin: 10px;
    padding: 15px;
    list-style-type: none;
}

.custom-counter li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    display: flex; /* Pomůže zarovnat obsah */
    align-items: center; /* Zarovná obsah vertikálně */
}

.custom-counter li::before {
    content: counter(step-counter);
    margin-right: 20px;
    font-size: 80%;

    /* Upravené vlastnosti pro kulatý tvar */
    background-color: rgb(136, 135, 135);
    color: white;
    padding: 6px 10px; /* Upraveno pro lepší poměr */
    border-radius: 50%; /* Zajistí kulatý tvar */

    /* Přidáno pro zarovnání textu uvnitř */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px; /* Minimální šířka pro zajištění kulatosti */
    height: 24px; /* Výška pro zajištění kulatosti */
}

hr.hr-1 {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.14),
            #FFA500,
            rgba(0, 0, 0, 0.11)
    );
}



@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-14 input[type=checkbox] {
        --active:var(--orange-text);
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover:var(--orange-text);
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .checkbox-wrapper-14 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .checkbox-wrapper-14 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled + label {
        cursor: not-allowed;
    }
    .checkbox-wrapper-14 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    .checkbox-wrapper-14 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
        width: 21px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }
    .checkbox-wrapper-14 input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 17px;
        height: 17px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }
}

.checkbox-wrapper-14 * {
    box-sizing: inherit;
}
.checkbox-wrapper-14 *:before,
.checkbox-wrapper-14 *:after {
    box-sizing: inherit;
}

/* Základní styl tabulky */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
}

/* Styl hlavičky tabulky */
td {
    padding: 10px 13px;
    text-align: left;
    border: 1px solid #ddd;

}

/* Styl hlavičky */
th {
    background-color: rgba(113, 109, 109, 0.24);
    color: yellow;
    padding: 10px 13px;
}

/* Hover efekt pro řádky */
tr:hover {
    background-color: rgb(43, 43, 43);
}

tr.table-warning{
    background-color: rgb(184, 122, 7);
}
td.text-right{
    text-align: right;
    font-weight: bold;
}

/* Responzivní kontejner */
.table-container {
    overflow-x: auto;
    max-width: 100%;
}

/* Úprava pro malé obrazovky */
@media screen and (max-width: 600px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px 10px;
    }
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.card {
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 310px; /* Pevná šířka pro desktop */
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 10px 0;
    margin-left: 10px;
    flex-grow: 1; /* Položka neroste */
    flex-shrink: 1; /* Položka se zmenšuje */
    padding: 15px;
    border: 2px solid rgba(204, 204, 204, 0.91);
    cursor: pointer;
    overflow-wrap: break-word; /* Zalome dlouhé slovo, pokud není místo */
    word-wrap: break-word;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.card-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #000;

}

.card-content {
    padding: 10px;
    line-height: 1.4em;
    text-align: center;
}

.card-content h3 {
    margin-top: 0;
    color: var(--orange-text);
    font-size: 1.3em;
    line-height: 1.0em;
}

.card-button {
    font-size: 0.85em;
    display: inline-block;
    max-width: 250px;
    margin: 20px 5px 10px 5px;
    padding: 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
}

.card-button:hover {
    background: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ramecek{
    margin-top: 20px;
}

.zluta{
    color: #edd152;
}


.wifi-ikona {
    width: 40px;
    height: 40px;
    color:  var(--orange-ikona);
}


.wifi-vlna-1, .wifi-vlna-2, .wifi-vlna-3 {
    animation: pulzovaniWifi 1.5s infinite linear;
    opacity: 0;
}


.wifi-tecka {
    fill: #ffffff;
    stroke-width: 3;
}


.wifi-vlna-1 {
    animation-delay: 0s;
}

.wifi-vlna-2 {
    animation-delay: 0.3s;
}

.wifi-vlna-3 {
    animation-delay: 0.6s;
}


@keyframes pulzovaniWifi {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.ramecek{
    border: 1px solid rgba(204, 204, 204, 0.31);
    padding: 10px 25px;
    border-radius: 21px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url('../images/tarify-bila.png');
    background-repeat: no-repeat;
    background-position: right;
    width: 100%;
    box-sizing: border-box;
}

iframe{
    margin-top: 20px;
    border: 2px solid var(--orange-ikona);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    filter: sepia(20%);
}



     /* 1. Hlavní obal - MUSÍ vytvářet izolaný kontext vrstev (z-index) */
 .suggest-container {
     position: relative;
     width: 100%;
     max-width: 400px;
     margin-bottom: 20px;
     z-index: 10; /* Nastaví prioritu celému bloku inputu a našeptávače */
 }

.suggest-list {
    position: absolute;
    left: 0;
    bottom: 100%;             /* ZMĚNA: Seznam začíná nad inputem, ne pod ním */
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-bottom: none;      /* ZMĚNA: Odstraníme spodní border, protože navazuje na input dolů */
    border-radius: 4px 4px 0 0; /* ZMĚNA: Zaoblíme horní rohy místo spodních */
    max-height: 220px;
    overflow-y: auto;
    display: none;
    z-index: 99999 !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 -8px 16px rgba(0,0,0,0.2); /* ZMĚNA: Stín směřuje nahoru */
}

.suggest-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.suggest-item:hover {
    background-color: #f1f3f5;
}

.suggest-item strong {
    color: #111;
}

.suggest-item .second-row {
    font-size: 0.85em;
    color: #6c757d;
    display: block;
    margin-top: 2px;
}

.dostupna{
    padding: 10px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: inline-block;
    font-weight: bold;
    border-radius: 8px;
}

.nedostupna{
    padding: 10px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: inline-block;
    font-weight: bold;
    border-radius: 8px;
}

.bila{color: #edd152;}


.responsive-table {
    width: 100%;
    border: 1px solid #dbecf3;
    border-radius: 4px;
    overflow: hidden;
    background-color: #dbecf3;
}

.table-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dbecf3;
    font-weight: bold;
    color: #dbecf3;
    background: #0A246A;
}

.header-cell, .table-cell {
    padding: 12px;
    text-align: left;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}


.header-cell:nth-child(1), .table-cell:nth-child(1) {
    flex: 1 1 30%;
}

.header-cell:nth-child(2), .table-cell:nth-child(2) {
    flex: 1 1 50%;
}

.header-cell:nth-child(3), .table-cell:nth-child(3) {
    flex: 0 0 20%;
}


.table-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #0A246A;
    color: #0A246A;
}


.table-row:nth-child(odd) {
    background-color: #dbecf3;
}

.table-row:nth-child(even) {
    background-color: rgb(0 0 0 / 0.05);
}

.table-row:hover {
    background-color: rgb(0 0 0 / 0.25) !important;
    color: #ffffff;
}

.table-row:last-child {
    border-bottom: none;
}



@media (max-width: 768px) {
    .table-header {
        display: none;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        border: 1px solid #0A246A;
        border-radius: 4px;
        margin-bottom: 15px;
        cursor: default;
    }

    .table-row:nth-child(odd) {
        background-color: rgb(0 0 0 / 0.05);
    }
    .table-row:nth-child(even) {
        background-color: rgb(0 0 0 / 0.15);
    }

    .table-cell {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        border-bottom: 1px solid #0A246A;
        justify-content: flex-start;
    }

    .table-row .table-cell:last-child {
        border-bottom:  1px solid #0A246A;
    }


    .header-cell:before, .table-cell:before {
        content: attr(data-label);
        font-weight: bold;
        color: #0A246A;
        display: inline-block;
        min-width: 120px;
        font-size: 0.95rem;
        margin-right: 10px;
        flex-shrink: 0;
    }
}

/* Hlavní kontejner natvrdo vytažený nad všechny vrstvy */
.call-widget-xyz {
    display: block !important; /* NYNÍ AKTIVNÍ VŠUDE pro okamžitý test */
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 66px !important;
    height: 66px !important;
    z-index: 99999999 !important; /* Maximální možná vrstva v prohlížeči */
    text-decoration: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Oranžový středový kruh s ikonou */
.call-widget-xyz .kruh-ikona-xyz {
    width: 66px !important;
    height: 66px !important;
    background-color: #e5682d !important; /* Vaše ověřená oranžová */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    z-index: 5 !important;
    transform-origin: center center !important;
    animation: vibrace-widgetu-xyz 3s infinite ease-in-out !important;
}

/* Pulzující vlny za ikonou */
.call-widget-xyz .vlna-pozadi-xyz {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 66px !important;
    height: 66px !important;
    background-color: #e5682d !important;
    border-radius: 50% !important;
    opacity: 0.5 !important;
    z-index: 1 !important;
    transform-origin: center center !important;
    animation: sirka-vlny-xyz 2.4s infinite ease-out !important;
}

/* Druhá vlna s fázovým posunem */
.call-widget-xyz .vlna-pozadi-xyz.druha-xyz {
    animation-delay: 1.2s !important;
}

/* DEFINICE ANIMACÍ - s unikátními názvy */
@keyframes sirka-vlny-xyz {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes vibrace-widgetu-xyz {
    0%, 12%, 100% { transform: rotate(0deg) scale(1); }
    2% { transform: rotate(10deg) scale(1.05); }
    4% { transform: rotate(-10deg) scale(1.05); }
    6% { transform: rotate(10deg) scale(1.05); }
    8% { transform: rotate(-10deg) scale(1.05); }
    10% { transform: rotate(0deg) scale(1); }
}


#cookie-bar, .cookie-container {
    display: none;
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 9999999 !important;
    width: calc(100% - 40px);
    max-width: 400px;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 20px !important;
    border: 1px solid var(--orange-soft) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--orange-soft);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background-color 0.3s ease;
}

#cookie-accept-all {
    background: var(--orange-soft);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.2s;
}

#cookie-accept-all:hover {
    background: var(--orange-soft);
}

#cookie-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #333;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s;
}

#cookie-reject:hover {
    background: #1a1a1a;
    color: #fff;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    background: #333;
    color: #fff;
    border: 1px solid var(--orange-soft);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.cookie-settings-btn:hover {
    transform: scale(1.05);
    background-color: #3a5bef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cookie-settings-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.cookie-settings-btn i {
    font-size: 24px;
}

.cookie-close {
    text-align: center;
    font-size: 0.6em;
}

/* MEDIA QUERY PRO MOBILY (užší než 480px) */
@media screen and (max-width: 480px) {
    #cookie-bar, .cookie-container {
        right: 10px !important;
        bottom: 10px !important;
        width: calc(100% - 20px); /* Menší okraje na malých displejích */
        max-width: none; /* Zrušíme limit 300px */
    }

    .cookie-settings-btn {
        bottom: 10px;
        right: 10px;
    }
}