#matomo-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483647;
    background: #ffffff;
    color: #222222;
    box-shadow: 0 -3px 18px rgba(0,0,0,0.20);
    border-top: 1px solid #dddddd;
    font-family: Arial, Helvetica, sans-serif;
}

.matomo-consent-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.matomo-consent-text {
    flex: 1;
}

.matomo-consent-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.matomo-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.matomo-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.matomo-consent-buttons button {
    padding: 10px 18px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
}

.matomo-consent-buttons button:last-child {
    background: #222;
    color: #fff;
}

#matomo-consent-modify {
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 2147483646;
    padding: 7px 12px;
    border: 1px solid #555;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-size: 12px;
    border-radius: 3px;
}

@media (max-width: 700px) {
    .matomo-consent-content {
        display: block;
        padding: 15px;
    }

    .matomo-consent-buttons {
        margin-top: 12px;
        justify-content: flex-end;
    }

    .matomo-consent-buttons button {
        flex: 1;
    }
}
