.pdfPage{
    border:#afafaf solid 1px;
    box-shadow: 1px 1px 1px #888888;
}

.toolbarContainer{
    background-color:#fafafa;
    height: 101px;
    border-bottom: solid #afafaf 1px;
}

.toolbarItem{
    display: flex;
    cursor: pointer;
    vertical-align: top;
    user-select: none;
    border-radius: 6px;
    transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.toolbarItem:hover{
    background-color: #f0f4ff;
    box-shadow: 0 1px 4px rgba(74, 144, 217, 0.12);
    transform: translateY(-1px);
}

.toolbarItem:active{
    transform: translateY(0px) scale(0.97);
}

.toolbarItemContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 6px 8px;
    flex-direction: column;
    gap: 6px;
}

.toolbarItemContainer p{
    font-size: 11px;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

.widgetList{
    display:inline;
}

.toolbarItemContainer .imageContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background: linear-gradient(135deg, #ffffff, #f7f8fb);
    border-radius: 8px;
    border: 1px solid #e2e6ed;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
}

.toolbarItemContainer .imageContainer img{
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

.toolbarItemContainer:hover .imageContainer{
    border-color: #a0b4d0;
    box-shadow: 0 2px 6px rgba(74, 144, 217, 0.1);
}

.pdfPageContainer img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}