#wcm-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: none; /* Controlled by JS */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(100%);
}

#wcm-cookie-banner.wcm-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.wcm-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wcm-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wcm-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.wcm-text a {
    color: inherit;
    text-decoration: underline;
}

.wcm-buttons {
    display: flex;
    gap: 10px;
}

.wcm-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.wcm-btn:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .wcm-content {
        flex-direction: column;
        text-align: center;
    }
    .wcm-text {
        min-width: unset;
        margin-bottom: 10px;
    }
    .wcm-buttons {
        justify-content: center;
        width: 100%;
    }
    .wcm-btn {
        flex: 0 1 auto;
        min-width: 120px;
    }
}

.wcm-revoke-link {
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
}
