@import '/assets/css/main.css';

#webweb-container,
#webweb-center,
#webweb-menu,
#webweb-visualization-container,
#webweb-visualization-container>svg,
#webweb-visualization-container>canvas,
.webweb-controls {
    background-color: transparent !important;
    color: transparent !important;
}

.webweb-container {
    width: 100%;
    height: 100%;
}
#webweb-center {
    margin-left: auto;
    margin-right: auto;
    background-color: var(--color-background, transparent);
    text-align: justify;
    font-family: palatino, georgia, verdana, arial, sans-serif;
    width: 100%;
    height: 100%;
}

#webweb-menu {
    font-size: 10px;
    padding: 15px;
    background-color: var(--color-background, transparent);
    /* flexbox stuff.. */
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#webweb-menu-right {
    text-align: right;
}

@media (max-width: 600px) {
    #webweb-center {
        margin-left: auto;
        margin-right: auto;
        background-color: var(--color-background, transparent);
        text-align: justify;
        font-family: palatino, georgia, verdana, arial, sans-serif;
        width: 100%;
        height: 100%;
    }
    #webweb-menu {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #webweb-menu-right {
        text-align: left;
    }
}

#webweb-visualization-container {
    overflow: hidden;
    background-color: var(--color-background, transparent);
}

#webweb-visualization-container>svg {
    background-color: var(--color-background, transparent);
    display: block;
    margin: 0 auto;
}

#webweb-visualization-container>canvas {
    /* border: solid 3px #f5f6fa; */
    background-color: var(--color-background, transparent);
    display: block;
    margin: 0 auto;
}

/* Hide buttons or control elements */
.webweb-controls {
    background-color: var(--color-background, transparent);
    display: none !important;
}