* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: rgb(42, 47, 53);
    font-family: system-ui, sans-serif;

}

pre,
::placeholder {
    font-family: monospace;
}

/*CSS for intro (started)*/

#intro {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#introImg {
    width: 250px;
    height: 250px;
    background-color: transparent;
}

/*CSS for intro (ended)*/


/*CSS for mainMenu (started)*/

#mainMenu {
    display: none;
    width: 100vw;
    height: 100vh;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;

    /*display: none; /*Will be deleted*/
}

.menuItem {
    width: 180px;
    height: 50px;
    border: 1px solid black;
    border-radius: 15px;
    text-align: center;
    align-content: center;
    background-color: rgb(61, 100, 122);
    box-shadow: 3px 3px black;
    color: rgb(0, 255, 0);
    user-select: none;
}

.menuItem:active {
    scale: 0.75;
    background-color: rgb(61, 100, 122);
    background-color: brown;
}

.menuItem:hover {
    background-color: blueviolet;
    color: rgb(229, 255, 0);
}

/*CSS for mainMenu (ended)*/

/*CSS for evalMode (started)*/

#evalMode {
    display: none;
    height: 100vh;
    width: 100vw;
    padding: 5px;
    grid-template-rows: 92% 8%;


}

#panel {

    height: 98%;
    width: 98%;

    align-self: center;
    justify-self: center;

    padding: 24px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 8px 6px 6px rgba(0, 0, 0, 0.322);

    color: rgb(117, 226, 15);

    overflow: auto;


}

#closeEvalMode,
#closeIntpMode,
#closeAbout {
    position: fixed;
    background: transparent;
    border-radius: 15px;
    border-right: 1px solid rgb(155, 148, 148);
    border-left: 1px solid rgb(155, 148, 148);
    padding: 5px;
    color: rgb(123, 255, 0);
    font-size: larger;
    font-weight: bolder;
    top: 2%;
    right: 24px;
    user-select: none;
}

#closeEvalMode:hover,
#closeIntpMode:hover,
#closeAbout:hover {
    background-color: rgba(139, 53, 165, 0.5);
    color: rgb(238, 255, 0);
}

#closeEvalMode:active,
#closeIntpMode:active,
#closeAbout:active {
    background-color: rgba(43, 216, 193, 0.863);
    scale: 0.85;

}

#curentLine {
    background: transparent;
    border: 0px;
    color: rgb(245, 122, 7);
    width: 100%;

}


#curentLine:focus {

    border: 0px;
    outline: 0px;


}

.inp {
    color: rgb(245, 229, 7);
    background-color: transparent;
    line-height: 35px;
}

.inpArrow {
    background-color: transparent;
    color: rgb(0, 247, 255);
    font-weight: bold;
    display: inline;
}

.out {
    color: rgb(35, 245, 7);
    background-color: transparent;
}

.error {
    color: rgb(241, 56, 10);
    background-color: transparent;
    font-weight: bold;
    text-align: justify;
}

.welcome {
    background: transparent;
    text-align: justify;
    color: rgb(150, 159, 182);

}

#tipsBox {

    position: fixed;
    width: 33%;
    height: 35vh;
    top: 55vh;

    background-color: rgb(255, 255, 255);
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    overflow: auto;

    box-shadow: 7px 7px rgba(44, 44, 42, 0.459);


}


.tips {
    background-color: transparent;
    border-bottom: 1px solid rgb(14, 13, 13);
    width: 90%;
    padding: 5px;
    color: rgb(33, 41, 39);
    cursor: pointer;

}

.tips:active {
    background-color: rgba(16, 131, 238, 0.555);
    border-radius: 25px;
    font-weight: bolder;
}

.tips:hover {
    background-color: rgba(204, 245, 2, 0.925);
    border-radius: 20px;
    font-weight: bolder;
    color: rgb(17, 0, 255);


}

#tipsLstTitle {
    background: transparent;
    color: rgb(87, 73, 86);
    font-weight: bolder;
}

#tipsBar {
    height: 98%;
    width: 98%;
    align-self: center;
    justify-self: center;
    background-color: transparent;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;



}

.tipsButton {

    height: 98%;
    width: 100%;
    border-right: 1px solid rgb(155, 148, 148);
    border-left: 1px solid rgb(155, 148, 148);
    border-radius: 30px;
    text-align: center;
    align-content: center;
    color: rgb(170, 230, 6);
    font-size: 1rem;
    font-style: italic;
    cursor: pointer;
    user-select: none;


}

.tipsButton:hover {
    background-color: rgba(139, 53, 165, 0.5);
    color: rgb(238, 255, 0);
}

/*CSS for evalMode (ended)*/

/*CSS for interpreterMode (started)*/
#interpreterMode {
    width: 98vw;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    justify-content: center;
    padding: 5px;
    gap: 7px;



}

#inpPanelIntpMode {

    width: 100%;
    height: 42%;
    resize: none;
    padding: 24px;
    color: rgb(0, 174, 255);
    line-height: 25px;
    font-size: larger;
    border-radius: 20px;
    background: rgba(37, 35, 35, 0.329);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 8px 6px 6px rgba(0, 0, 0, 0.322);
    overflow: auto;
    text-wrap: nowrap;

}

#toolsBoxIntpMode {
    width: 100%;
    height: 15%;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;

}

.toolIntpMode {
    background: rgba(68, 165, 255, 0.164);

    height: 90%;

    text-align: center;
    align-content: center;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(196, 250, 3);
    font-size: 12px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}


.toolIntpMode:hover {
    background-color: rgba(202, 233, 27, 0.747);
    color: rgb(71, 5, 253);
    font-size: larger;
}

.toolIntpMode:active {
    background-color: rgba(27, 233, 106, 0.747);
    color: rgb(71, 5, 253);
    font-size: larger;
    scale: 0.80;
}


#run {
    font-size: 20px;
    color: rgb(29, 247, 0);
    font-weight: bold;
}

#clear {
    font-size: 20px;
    color: red;
    font-weight: bold;
}

#outPanelIntpMode {

    width: 100%;
    height: 40%;
    border: 1px solid rgb(109, 126, 182);
    padding: 35px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 8px 6px 6px rgba(0, 0, 0, 0.322);

    color: rgb(117, 226, 15);
    overflow: auto;
}


#outIntpMode {
    color: rgb(7, 236, 129);
    background-color: transparent;
    display: inline;
    line-height: 25px;

}

#outCountIntpMode {
    display: inline;
    background: transparent;
    color: rgba(136, 255, 0, 0.445);
}

#errorIntpMode {
    color: rgb(255, 81, 0);
    background-color: transparent;
    display: inline;


}

#errStatIntpMode {
    display: inline;
    background: transparent;
    color: rgba(235, 71, 213, 0.651);
}

/*CSS for interpreterMode (ended)*/

/*CSS for about (started)*/

#about {
    display: none;
    position: relative;
    border: 2px solid rgb(71, 83, 76);
    border-radius: 25px;
    background-color: rgb(37, 37, 49);
    width: 98vw;
    height: 98vh;
    top: 1vh;
    left: 1vw;
    flex-direction: column;
    justify-content: center;


}

#aboutInfo {
    align-self: center;
    display: flex;
    background-color: transparent;
    text-align: justify;
    padding: 25px;
    font-size: 18px;
    color: rgb(235, 252, 0);
    overflow: auto;
    border-radius: 25px;
    box-shadow: 3px 3px rgb(72, 255, 0);
    width: 95vw;
}