.thk-cookies-baner {
    position: fixed;
    padding: 25px 30px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.thk-cookies-baner.top {
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thk-cookies-baner.bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.thk-cookies-baner.modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.thk-cookies-baner .thk-tresc {
    margin-bottom: 15px;
    line-height: 1.6;
}

.thk-cookies-baner .thk-tresc a {
    text-decoration: underline;
    font-weight: normal;
}

.thk-cookies-baner .thk-tresc a:hover {
    opacity: 0.8;
}

.thk-cookies-baner button {
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    min-width: 150px;
    display: inline-block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.thk-cookies-baner button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.thk-cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
}

/* Responsywność */
@media (max-width: 768px) {
    .thk-cookies-baner {
        padding: 20px;
    }
    
    .thk-cookies-baner button {
        width: 100%;
        min-width: auto;
    }
    
    .thk-cookies-baner.modal {
        width: 95%;
        padding: 20px;
    }
}