/* kontener banera */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    z-index: 10000;
    display: none; /* domyślnie ukryty */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.cookie-banner a{
	text-decoration: none;
	color: black;
	font-weight: bold;
}
.cookie-banner a:hover{
	text-decoration: none;
	color: #555;
	font-weight: bold;
}

/* przyciski */
.cookie-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cookie-buttons button:nth-child(1) {
    background: #e0e0e0;
    color: #333;
}
.cookie-buttons button:nth-child(1):hover {
    background: #d0d0d0;
}

.cookie-buttons button:nth-child(2) {
    background: #007bff;
    color: #fff;
}
.cookie-buttons button:nth-child(2):hover {
    background: #0066cc;
}

.cookie-buttons button:nth-child(3) {
    background: #28a745;
    color: #fff;
}
.cookie-buttons button:nth-child(3):hover {
    background: #218838;
}

/* animacja pokazywania */
.cookie-banner.show {
    display: block;
    opacity: 1;
}

