.cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5em;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity .4s ease;
}
.cc-window.cc-banner {
    width: 100%;
    padding: 1em 1.8em;
    color: #000;
    background-color: #f5f5f5;
}
.cc-btn {
    margin: 0.5em;
    padding: 0.4em 0.5em;
    border: none;
    background: #5a2d2d;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}
.cc-link {
    color: #5a2d2d;
    text-decoration: underline;
}

/* Ensure the consent box displays correctly */
.cc-window {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Style for the button container */
.cc-compliance {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.5em;
}

@media screen and (max-width: 768px) {
    .cc-window {
        flex-direction: column;
        text-align: center;
    }
}