.window-button-box {
    position: absolute;
    top: 2px;
    right: 2px;
    border: 0px solid red;
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;

}
.window-button {
    width: 12px;
    height: 12px;
    border-radius: 10px;
    cursor: pointer;

}
.button-red {
    background: #ED6A5F;
    border: 1px solid #D14C3F;
}
.button-yellow {
    background: #F4BF4F;
    border: 1px solid #D7A242;
}
.button-green {
    background: #62C454;
    border: 1px solid #4FA73A;
}
