#cookie-notice {
    background-color: #1a237e;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    position: relative;
    border-radius: 0 0 12px 12px;
    z-index: 9999;
}

#cookie-notice p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

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

#accept-cookies {
    background-color: #4caf50; /* zielony */
    color: white;
}

#accept-cookies:hover {
    background-color: #45a049;
}

#decline-cookies {
    background-color: #f44336; /* czerwony */
    color: white;
}

#decline-cookies:hover {
    background-color: #e53935;
}
