* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Inter",sans-serif;
}
body {
    margin:0;
    padding: 0;
    height: 100dvh;
    width: 100vw;
    position: relative;
    background:rgb(245,245,245);
}
*::selection {
    background:rgba(0,0,0,0.3)
}
iframe.main {
    position: absolute;
    bottom:5px;
    left: 5px;
    width: calc(100vw - 10px);
    height: calc(100dvh - 60px);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border:none;
    background:white;
}
.top-bar {
    display: flex;
    align-items: center;
    height: 55px;
}
.top-bar .controls {
    display: flex;
    background:white;
    box-shadow: 0 0 10px rgb(0,0,0,0.4);
    padding:0 5px;
    height: 42px;
    margin-left: 5px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}
.top-bar .controls i {
    font-size: 18px;
    cursor: pointer;
    border-radius: 15px;
    border:1px solid transparent;
    padding:5px;
    aspect-ratio: 1/1;
    transition: 120ms;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-bar .controls i:hover {
    border-color:rgb(230,230,230);
    background:rgb(245,245,245);
    transform: scale(1.03);
}
.top-bar .controls i:active {
    transform: scale(0.94);
} 
.top-bar .input {
    margin-left: 10px;
    width: 100%;
    border-radius: 15px;
    background:white;
    box-shadow: 0 0 10px rgb(0,0,0,0.4);
    margin-right: 5px;
    border:none;
    height: 40px;
    outline: transparent;
    color:rgb(130,130,130);
    font-weight: 500;
    border:1px solid transparent;
    transition: 120ms;
    display: flex;
}
.top-bar input {
    padding:10px;
    background:transparent;
    border:none;
    font-family: inherit;
    outline: none;
    font-family: "Inter",sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    color:inherit
}
.top-bar .input i {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    transition: 120ms;
    margin-right: 10px;
    font-size: 19px;
    cursor: pointer;
}
.top-bar .input i:hover {
    transform: scale(1.03);
}
.top-bar .input i:active {
    transform: scale(0.95);
}
.top-bar .input:focus-within, .top-bar .input:active {
    color:black;
    border-color:black;
}