.window {
    border: 1px solid rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    position: absolute;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    user-select: none;
}

.windowheader {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: grab;
    justify-content: space-between;
    margin-top: 6px;
    padding-bottom: 4px;
}

.windowheader:active {
    cursor: grabbing;
}

.headertext {
    margin: 0px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.closebutton {
    width: 13px;
    height:  13px;
    cursor: pointer;
    background-color: #EC6B5E;
    border-radius: 50%;
    border: solid 1px rgba(0, 0, 0, 0.2);
    margin-left: 12px;
}

.sidebaritem {
    padding: 8px 12px;
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: background-color 0.2s;
    color: #000;
}

.sidebaritem:hover {
    background-color: #eaeaea;
}

.sidebaritem.selected {
    background-color: #ffe0b2;
    border-color: #ffa726;
    font-weight: bold;
}