/*
 * Copyright (c) 2020, 2024 Oracle and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#root {
    background-color: #36ABF2;
    font-family: Roboto,sans-serif;
    color: #fff;
    position: absolute;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#root::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

#helidon {
    width: 509px;
    height: 273px;
    position: relative;
    left: -509px;
    z-index: 4;
    background: url('img/frank.png');
}

#rest-tip {
    position: relative;
    top: -80px;
    left: 160px;
}

#rest-tip-arrow {
    width: 205px;
    height: 304px;
    z-index: 4;
    top: -20px;
    background: url('img/arrow-1.png');
}
#rest-tip-label {
    position: absolute;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    z-index: 4;
    left: -60px;
}

#sse-tip {
    position: absolute;
    overflow: hidden;
    display: flex;
    width: auto;
    height: auto;
    top: 5%;
    right: 10%;
    z-index: 0;
}

#sse-tip-arrow {
    position: relative;
    top: -30px;
    width: 296px;
    height: 262px;
    z-index: 4;
    background: url('img/arrow-2.png');
}
#sse-tip-label {
    position: relative;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    z-index: 4;
}

#producer {
    float: left;
    position: relative;
    width: 300px;
    height: 100%;
    margin: 50px;
    padding: 10px;
    z-index: 99;
}

#msgBox {
    position: absolute;
    width: 300px;
    top: 25%;
    right: 3%;
    height: 100%;
    margin: 50px;
    padding: 10px;
    z-index: 20;
}

#input {
    width: 210px;
    height: 22px;
    top: 58px;
    left: 30px;
    background-color: white;
    border-radius: 10px;
    border-style: solid;
    border-color: white;
    position: absolute;
    z-index: 10;
}

#inputCloud {
    position: relative;
    width: 310px;
    height: 150px;
    background: url('img/cloud.png');
}

#msg {
    background-color: #D2EBFC;
    color: #1A9BF4;
    border-radius: 10px;
    width: 300px;
    height: 50px;
    margin: 5px;
    display: flex;
    padding-left: 10px;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

#submit {
    font-weight: bold;
    background-color: aqua;
    color: #1A9BF4;
    border-radius: 12px;
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    cursor: pointer;
}

#snippet {
    position: absolute;
    top: 15%;
    left: 30%;
    width: 40%;
    z-index: 5;
}

.hljs {
    border-radius: 10px;
    font-size: 12px;
}