
/* 2. CSS FILE: style.css */
.intent-chip {
    background: #f0f0f0;
    border-radius: 4px;
    padding: 2px 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border: 1px dotted #aaa;
    margin-right: 4px;
}
.intent-icon {
    fill: #0073aa;
    margin-right: 4px;
}
#intent-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.25);
    display: none;
    z-index: 9999;
    overflow-y: auto;
    padding: 12px;
    font-family: Arial, sans-serif;
    border-left: 3px solid #1a73e8;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { right: -400px; }
    to { right: 0; }
}

#intent-panel-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #444;
    background: #e8f0fe;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 10000;
}
@keyframes blink {
  50% { opacity: 0.4; }
}
#cse-result-box {
    margin-top: 40px;
}

#cse-result-box gcse\:searchresults-only {
    display: block;
    margin-top: 12px;
}

/* Google CSE container */
#cse-search-box, #cse-search-results {
    width: 100%;
    font-size: 14px;
}