@font-face 
{
    font-family: OverPassBold;
    src: url("res/font/overpass-mono-bold.otf");
}
@font-face 
{
    font-family: OverPassSemiBold;
    src: url("res/font/overpass-mono-semibold.otf");
}
@font-face 
{
    font-family: OverPassRegular;
    src: url("res/font/overpass-mono-regular.otf");
}

body 
{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding:0%;
    margin: 0;
    font-family: "OverPassRegular";
}

/*MARK: form*/
.form 
{

}
.frm-section{
    margin-bottom: 5px;
}
.frm-separate{
    border-bottom: 1px solid gray;
}
.frm-record
{
    margin-bottom: 5px;
}

.frm-record > div
{
    padding: 3px;
}

.frm-record .title
{
    
}
.frm-control 
{
    margin-bottom: 5px;
}
/*element display as a link*/
.link 
{
    text-decoration: underline;
    padding: 3px;
    color:rgb(24, 95, 187);
}
.link:hover 
{
    cursor: pointer;
    color:rgb(44, 119, 216);
}

/*page*/
.page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding:0%;
    margin: 0;
}
.page .top-bar 
{
    height: 35px;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
    justify-content: end;
    border-bottom:1px dotted gray;
}
.page .page-content
{
    overflow: hidden;
    overflow-y: auto;
    flex-grow: 1;
}

.page.center-page 
{
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page.center-page .page-content
{
    margin: auto;
    flex-grow: unset;
}
/*MARK: Section*/
.section {
    padding: 5px;
}
.section>.title {
    font-weight: bold;
    padding: 5px 5px 5px 0px;
}

.top-bar .button {
    padding:3px;
    border-radius: 3px;
    background-color: cornflowerblue;
    margin-right:5px;
}

.top-bar .button:hover {
    cursor: pointer;
    background-color: rgb(115, 161, 245);
}
/* ICON */
.merge-icon{
    position: relative;
}
.sub-icon{
    position:absolute;
    right:2px;
    bottom:2px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: black;
    font-size: 0.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    border:1px solid white;
}