24 lines
422 B
CSS
24 lines
422 B
CSS
.ai-assistant-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
width: 300px;
|
|
background-color: white;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
z-index: 9999;
|
|
}
|
|
|
|
#ai-assistant-header {
|
|
padding: 10px;
|
|
background-color: #f0f0f0;
|
|
border-bottom: 1px solid #ccc;
|
|
cursor: move;
|
|
}
|
|
|
|
#ai-assistant-content {
|
|
padding: 10px;
|
|
}
|
|
|
|
/* Add more styles as needed */ |