
#drawer
{
    width: 60%;
    height: 60%;
}

.drawer
{
    border: 1px solid #999;
    border-radius: 5px;
    background-color: #dfdfdf;
    margin-top: 20px;
    box-shadow: 0px 4px 5px #8D8B8B;
    margin-left: 20%;
    min-width: 640px;
    min-height: 480px;
}

.context-menu
{
    color: black;
    background-color: white;
    
    width: 200px;
    height: 90px;

    border-color: #888FF6;
    border-width: 1px;
    border-radius: 5px;
}

.context-menu:hover
{
    background-color: white;
}

.context-menu-item
{
    color: black;
    background-color: white;
    border-color: white;
    border-width: 0px;
    border-radius: 5px;
    margin: 10px;
}

.context-menu-item:hover
{
    background-color: rgb(245, 245, 255);
}

.net-element
{
    color: black;
    background-color: white;
    
    width: 200px;
    height: 90px;

    border-color: #888FF6;
    border-width: 1px;
    border-radius: 5px;
}

.net-connection
{
    color: #888FF6;
}

.net-element:hover
{
    background-color: rgb(245, 245, 255);
}

.dialog
{
    position: fixed;
    top: 50%;
    left: 50%;
    border: 1px solid #888FF6;
    border-radius: 5px;
    transform: translate(-50%, -50%);
}

.dialog::backdrop
{
    backdrop-filter: blur(2px);
}

.dialog-element
{
    margin: 5px;
    font-family: "Montserrat";
    background-color: white;
    white-space: nowrap;
}

.dialog-element:hover
{
    background-color: rgb(245, 245, 255);
}

.dialog-header
{
    margin: 5px;
    text-decoration: underline;
}

.button
{
    border: 1px solid #888FF6;
    border-radius: 5px;
    padding: 3px;
}

.right
{
    margin-left: auto;
}

.input
{
    border: 1px solid #888FF6;
    border-radius: 5px;
    padding: 3px;
}

.input:focus
{
    border: 1px solid #888FF6;
    border-radius: 5px;
    outline: none;
}

.flex
{
    display: flex;
}

.hidden
{
    display: none;
}