#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 15px;
}

.cookie-consent-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-consent-inner p {
    margin: 0;
    flex: 1 1 400px;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

.cookie-consent-inner a {
    color: #0077c2;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.cookie-consent-accept,
.cookie-consent-decline {
    border: none;
    border-radius: 3px;
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
}

.cookie-consent-accept {
    background-color: #0077c2;
    color: #ffffff;
}

.cookie-consent-accept:hover {
    background-color: #005f9e;
}

.cookie-consent-decline {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
}

.cookie-consent-decline:hover {
    background-color: #f2f2f2;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent-inner p {
        flex: 0 1 auto;
    }
    .cookie-consent-actions {
        justify-content: flex-end;
    }
}


.footer-legal-links {
    margin-top: 8px;
    font-size: 12px;
}

.cookie-consent-manage {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    text-decoration: underline;
    font: inherit;
}
