/* Tenká lišta dole */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #131e29;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

#cookie-banner button {
    margin-left: 10px;
    background-color: #ff5a00;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#cookie-banner button:hover {
    background-color: #e14d00;
}

/* Popup okno */
#cookie-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    z-index: 1100;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
}

#cookie-popup-close {
    display: block;
    margin-top: 20px;
    background-color: #131e29;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

#cookie-popup-content ul li {
    color: black;
    text-shadow: none;
    font-size: 1rem;
}