/* ============================================
   COOKIEYES — ULTRA-MINIMAL MICRO DOT (GREEN)
   Sunnybank Flowers — bottom-right placement
============================================ */

/* WRAPPER: tiny, transparent, bottom-right */
.cky-btn-revisit-wrapper {
    position: fixed !important;
    bottom: 14px !important;
    right: 14px !important; /* <-- MOVED TO RIGHT */
    left: auto !important;  /* <-- ENSURE no left positioning */
    z-index: 999999 !important;
    transform: scale(0.45) !important;  /* tiny size */
    opacity: 0.40 !important;           /* very subtle */
    transition: all 0.25s ease-in-out !important;
}

/* Hover = more visible + slightly larger */
.cky-btn-revisit-wrapper:hover {
    opacity: 0.95 !important;
    transform: scale(0.60) !important;
}

/* BUTTON: Sunnybank green, tiny circular button */
.cky-btn-revisit {
    background: #3fae2a !important; /* Sunnybank GREEN */
    color: #fff !important;

    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;

    padding: 0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.22) !important;
    font-size: 0 !important;

    /* Minimal white icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='18' viewBox='0 0 24 24' width='18' fill='white'%3E%3Cpath d='M12 2a5 5 0 015 5v1h1a3 3 0 010 6h-1v1a5 5 0 01-10 0v-1H6a3 3 0 010-6h1V7a5 5 0 015-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Hide CookieYes default labels */
.cky-btn-revisit span,
.cky-revisit-title {
    display: none !important;
}
