.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #ccc;
    padding: 35px;
    box-shadow: 0 -2px 10px #0000001a;
    z-index: 9999;
    font-size: 16px;
    line-height: 1.4;
    transform: translateY(100%);
    transition: transform .5s linear;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0 0 10px;
}
.cookie-banner .btn-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}
.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}
.cookie-btn.reject {
    background: #f44336;
    color: white;
}
.cookie-btn.info {
    background: #2196F3;
    color: white;
}

/* Modál */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}
.modal-backdrop.visible {
    display: block;
}
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 10001;
}
.modal h3 {
    margin-top: 0;
}
.modal p {
    margin: 0 0 12px;
    font-size: 14px;
}
.modal .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: none;
    color: #888;
}
.modal .modal-footer {
    margin-top: 16px;
    text-align: right;
}
.modal-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.modal-btn.save {
    background: #4CAF50;
    color: white;
}
.modal-btn.cancel {
    background: #ccc;
    color: #333;
}

/* Tlačítko pro znovuotevření (cookie kolečko) */
.set-cookie {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 10002;
}
.set-cookie .cookie-settings-btn {
    background: #222;
    border: 3px solid #aaa;
    color: #aaa;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
