/* Copilot Studio Chat Widget Styles */

#copilot-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#copilot-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005B9A 0%, #0078D4 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 91, 154, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#copilot-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 91, 154, 0.4);
}

#copilot-chat-toggle svg {
    width: 28px;
    height: 28px;
    fill: white;
}

#copilot-chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 400px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

#copilot-chat-container.active {
    display: flex;
}

@media (max-width: 768px) {
    #copilot-chat-container {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        right: 20px;
        left: 20px;
    }
}
