
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    color: var(--dark);
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

.cookie-bar p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.cookie-bar a {
    color: var(--dark);
    background-color: var(--style);
    border: solid 2px var(--style);
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    padding: 2px 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-bar a:hover {
    background-color: var(--light);
}