.gurimao-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
    flex-wrap: wrap;
}
.gurimao-cookie-banner.hidden {
    display: none;
}
.guri-cookie-text {
    flex: 1;
    margin-right: 1rem;
}
.guri-cookie-accept,
.guri-cookie-settings {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-size: 14px;
}

#guri-cookie-popup {
    position: fixed;
    background: white;
    color: black;
    max-width: 500px;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    display: none;
}
#guri-cookie-popup h2 {
    margin-top: 0;
    font-size: 20px;
}
#guri-cookie-popup label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
}
#guri-cookie-popup input[type="checkbox"] {
    margin-right: 0.5rem;
}
#guri-cookie-popup button {
    margin-top: 1rem;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Link: Zmień ustawienia cookies */
.guri-cookie-reset {
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    color: inherit;
}
.guri-cookie-reset:hover {
    opacity: 0.8;
}
