.cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--color-text-body, #333);
    color: var(--color-white, #fff);
    text-align: center;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 14px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-bar button {
    margin: 5px;
    padding: 10px 20px;
    background: var(--color-info, #007BFF);
    color: var(--color-white, #fff);
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md, 5px);
    font-size: 14px;
}

.cookie-bar button:hover {
    background: var(--color-info-hover, #0056b3);
}

.cookie-bar a {
    color: #00aaff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
}

.cookie-bar a:hover {
    text-decoration: underline;
}
