/* Simplified Cookie Consent Modal as a Bottom Banner */
.lcc-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    transform: none;
    top: auto;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.lcc-modal__content {
    flex: 1;
    margin-right: 20px;
    max-width: 70%;
}

.lcc-modal__actions {
    display: flex;
    align-items: center;
}

.lcc-button {
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.lcc-button:first-child {
    margin-left: 0;
}

.lcc-button.js-lcc-accept {
    background-color: #007bff;
    border: 1px solid #007bff;
    color: #ffffff;
}

.lcc-button.js-lcc-accept:hover {
    background-color: #0056b3;
    border: 1px solid #0056b3;
}

.lcc-button.lcc-button--link {
    background: transparent;
    border: none;
    color: #007bff;
    padding: 6px 0;
    text-decoration: underline;
}

.lcc-button.lcc-button--link:hover {
    color: #0056b3;
    text-decoration: none;
}

.lcc-modal__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.lcc-modal__close {
    display: none;
}

.lcc-backdrop, .js-lcc-backdrop {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lcc-modal__content {
        max-width: 100%;
        margin-right: 0;
    }

    .lcc-modal__actions {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .lcc-button {
        margin-left: 5px;
        margin-right: 5px;
        width: 48%;
        box-sizing: border-box;
    }
}

.lcc-button.js-lcc-decline {
    background-color: #dc3545;
    border: 1px solid #dc3545;
    color: #ffffff;
}

.lcc-button.js-lcc-decline:hover {
    background-color: #a71d2a;
    border: 1px solid #a71d2a;
}

.lcc-modal__close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #000;
    cursor: pointer;
}