<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.caio-page-container button {
        cursor: pointer;
    }

    .caio-page-container button:focus {
        outline: none;
    }

    .oc-modal-container .modal-overlay {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }

    .oc-modal-container .modal-content {
        position: fixed; top: 20%; left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 20px;
        z-index: 9999;
        width: 600px;
        max-width: 90%;
        border-radius: 4px;
    }

    .hidden-thread {
        display: none;
    }

    #caio-conversations-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 300px;
        z-index: 9999;
        padding-top: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    #caio-conversations {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        overflow-y: auto;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    #caio-conversations-wrapper.open {
        transform: translateX(0);
    }

    #toggle-conversations-panel {
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        z-index: 10000;
        width: 30px;
        height: 30px;
    }

    #caio-prompt-library-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 400px;
        z-index: 9999;
        padding-top: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    #caio-prompt-library {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        overflow-y: auto;
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
        padding: 1rem;
    }
    
    #caio-prompt-library-wrapper.open {
        transform: translateX(0);
    }

    #toggle-prompt-library-panel {
        position: absolute;
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
        z-index: 10000;
        width: 30px;
        height: 30px;
    }

    .panel-inner {
        padding: 1rem;
    }

    /* Main loader styles */
    .caio-oc-thinking-visual {
        display: inline-block;
        width: 160px;
        height: 20px;
        position: relative;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 40px;
        overflow: hidden;
        vertical-align: middle;
    }

    .caio-oc-thinking-visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.4) 25%, 
            rgba(255, 255, 255, 0.8) 50%, 
            rgba(255, 255, 255, 0.4) 75%, 
            transparent 100%);
        border-radius: 40px;
        animation: caio-slide 1.5s ease-in-out infinite;
    }

    .caio-oc-thinking-visual::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: #ffffff;
        border-radius: 40px;
        animation: caio-slide-fast 2s ease-in-out infinite;
        animation-delay: 0.3s;
    }

    @keyframes caio-slide {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }

    @keyframes caio-slide-fast {
        0% {
            left: -50%;
        }
        100% {
            left: 100%;
        }
    }

    /* Alternative compact version */
    .caio-oc-thinking-visual.compact {
        width: 80px;
        height: 10px;
    }

    /* Dark theme variant */
    .caio-oc-thinking-visual.dark {
        filter: invert(1);
    }

    .notice.notice-success.is-dismissible {
        background-color: rgba(0,250,0,0.5);
    }</pre></body></html>