/**
 * Sidepanel Global Styles
 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#root {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* 全局滚动条样式 - 与 popover 保持一致 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 2px;
    border-right: 2px solid transparent;
    background-clip: padding-box;
}

/* Firefox 滚动条样式 */
* {
    scrollbar-width: thin;
    scrollbar-color: #d9d9d9 transparent;
}

