html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Custom styles for PeopleWorks Copilot */
.pw-fab.e-fab {
    background-color: #0078d4;
    color: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.pw-fab.e-fab:hover {
    background-color: #106ebe;
}

.pw-dialog .e-dialog {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pw-dialog .e-dlg-header {
    background-color: #0078d4;
    color: white;
    padding: 10px 15px;
}

.pw-dialog .e-dlg-content {
    padding: 0;
    overflow: hidden;
}

.pw-aiassistview, .pw-aiassistview-embed {
    height: 100%;
    width: 100%;
    border: none;
}

/* Connection status indicator */
.connection-status {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    z-index: 9999;
    display: none;
}

/* Fix for WebSocket issues in iframes */
.e-blazor-template {
    height: 100%;
}

/* Custom scrollbar for better performance */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
