#cbc-creature-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none !important;
    z-index: 2147483647;
    touch-action: none;
    display: none;
    mix-blend-mode: normal;
}

#cbc-creature-canvas.active {
    display: block;
}

.cbc-widget-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.cbc-creature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* min-width removed to allow Elementor styling */
    padding: 12px 24px;
    background-color: #18181b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    outline: none;
}

.cbc-creature-btn:hover {
    background-color: #27272a;
    transform: translateY(-1px);
}

.cbc-creature-btn:active {
    transform: translateY(0);
}

/* Form Selection State (Blue) */
.cbc-creature-btn[data-state="form"] {
    background-color: #3b82f6;
}

.cbc-creature-btn[data-state="form"]:hover {
    background-color: #2563eb;
}

/* Deactivate State (Red) */
.cbc-creature-btn[data-state="deactivate"] {
    background-color: #dc2626;
}

.cbc-creature-btn[data-state="deactivate"]:hover {
    background-color: #b91c1c;
}