#wbc-cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 340px;
    width: calc(100% - 40px);
    background: #ffffff;
    color: #2e2e2e;
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    padding: 12px 14px;
    font-family: Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.45;
    z-index: 9999;
}
#wbc-cookie-banner.hidden { display: none; }
#wbc-cookie-banner p { margin: 0 0 10px 0; }
#wbc-cookie-banner a {
    color: #0166a7;
    text-decoration: underline;
}
#wbc-cookie-banner a:hover { color: #428bca; }

/* Close X — large, outside the top-right corner.
   margin:0 overrides the global `button { margin: 20px }` rule in css/custom.css. */
#wbc-cookie-banner .wbc-btn-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font: 700 22px/32px Arial, sans-serif;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.35);
    transition: background 0.15s ease, transform 0.15s ease;
}
#wbc-cookie-banner .wbc-btn-close:hover {
    background: #20b0ff;
    transform: scale(1.08);
}
#wbc-cookie-banner .wbc-btn-close:focus {
    outline: 3px solid #20b0ff;
    outline-offset: 2px;
}

#wbc-cookie-banner .wbc-cookie-actions {
    display: flex;
    justify-content: flex-end;
}

/* "Got it" button — margin:0 overrides the global `button { margin: 20px }` rule in css/custom.css. */
#wbc-cookie-banner .wbc-btn-gotit {
    background: #20b0ff;
    color: #ffffff;
    border: 1px solid #20b0ff;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
}
#wbc-cookie-banner .wbc-btn-gotit:hover { background: #4e4e4e; border-color: #4e4e4e; }

@media (max-width: 480px) {
    #wbc-cookie-banner {
        left: 12px; right: 12px; bottom: 12px;
        max-width: none; width: auto;
    }
    #wbc-cookie-banner .wbc-cookie-actions {
        justify-content: flex-start;
    }
}
