/*
Inherited
*/

.floating-window {
    position: absolute;
    background-color: white;
    width: fit-content;
    box-shadow: 0px 8px 14px 0px #0000001A;
    border-radius: 5px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
}

.window-body {
    overflow: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gaudi-inspector .window-body {
    padding: 6px;
}

.gaudi-reference .window-body {
    padding-left: 15px;
    padding-right: 15px;
}

.window-header {
    background-color:inherit;
    padding: 12px;
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 0.5px;

}

.top-resizer-handle {
    background-color: inherit;
    height: 20px;
    min-height: 20px;
    width: 100%;
}

.window-footer {
    background-color:inherit;
   /* height: 3.5em;
    min-height: 3.5em;*/
    width:100%;
    display: flex;
    flex-direction: row;
}

.gaudi-inspector .window-footer {
    height: 0.1em;
    min-height: 0.1em;
    width: 100%;
}

.gaudi-editor .window-footer .tools {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding:8px 12px;
}

.gaudi-editor .window-footer .tools img {
    margin-right: 12px;
    font-size: 14px;
    letter-spacing: 1px;

}

.floating-window button {
    cursor: pointer;
    background-color: white;
    outline: none;
    border: 1px solid #DFDFDF;
    border-radius: 5px;
    padding: 0.2em 1em;
    transition: 0.3s;
    color: #2A2A2A;
    margin-left:12px;
}

.floating-window button:hover {
    background-color: #2A2A2A;
    border: 1px solid #2A2A2A;
    color: white;
    transition: 0.3s;
}

.floating-window .inverted-button {
    transition: 0.3s;
    background-color: #2A2A2A;
    border: 1px solid #2A2A2A;
    color: white;
}

.floating-window .inverted-button:hover {
    background-color: white;
    border: 1px solid #DFDFDF;
    color: #2A2A2A;
    transition: 0.3s;
}


.floating-window img {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.floating-gaudi-header{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.floating-gitbook-header{
    width: 100%;
    display: flex;
    justify-content: center;
    color: #637EF7;
    text-underline: #637EF7;
    text-decoration: underline;
    font-size: 13px;
}

.floating-gaudi-header img{
    cursor: unset;
    margin-right:12px;
}

.floating-gitbook-header img{
    cursor: pointer;
    margin-right:8px;
    width: 14px;
    height: 14px;
    padding-top: 1px;
}

.console-window{
    height: 30%;
    min-height: 110px !important; /* this is dependent to repl input and output - at least include both on the ui */
}

details body{
    width: auto;
    background-color: white;
    overflow-x: unset;
    margin: 8px !important;
    font-size: 14px;
}
