#matomo-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483647;
    background: rgba(20, 20, 20, 0.97);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.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,
#matomo-change-consent {
    border: 0;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

.matomo-consent-buttons button {
    padding: 11px 20px;
    border-radius: 4px;
    font-size: 14px;
}

#matomo-consent-accept {
    background: #fff;
    color: #111;
}

#matomo-consent-refuse {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

#matomo-change-consent {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 2147483646;
    padding: 8px 12px;
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 700px) {
    .matomo-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }

    .matomo-consent-buttons {
        width: 100%;
    }

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