.cookie-consent {
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
}

.cookie-consent .cookie-consent-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent .cookie-consent-inner p {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.cookie-consent #cookielawlink {
    font-weight: bold;
    margin-left: 8px;
    color: white;
}

.cookie-consent button {
    padding: 4px 12px;
    background-color: white;
    color: black;
    border-radius: 4px;
    min-width: 70px;
    border: none;
}

.hidden {
    display: none;
}

@media (max-width: 576px) {
    .cookie-consent .cookie-consent-inner {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-consent #cookielawlink {
        margin: 0;
    }
}