#copilot-bubble{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border-radius:50%;
background:#0078D4;
color:white;
font-size:30px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
z-index:9999;
transition:transform .2s;
}

#copilot-bubble:hover{
transform:scale(1.1);
}

#copilot-container{
position:fixed;
bottom:110px;
right:25px;
width:380px;
height:550px;
background:white;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.3);
overflow:hidden;
opacity:0;
transform:translateY(20px);
pointer-events:none;
transition:all .25s;
z-index:9999;
}

#copilot-container.open{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

#copilot-header{
background:#0078D4;
color:white;
padding:12px;
font-weight:bold;
}

#copilot-close{
float:right;
cursor:pointer;
}

#copilot-chat{
height:500px;
}