@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&display=swap');
@import url("spacenet.common.css");

* {
    /* Clear padding effect settings from browser */
    padding: 0;
    margin: 0;
}

html, body {
    min-height: 1000px;
    height:100%;
    width: 100%;
    background-color: rgb(46, 46, 46);
}

.background {
    position: fixed;
    width: 100%; height: 100%;
    background-size: cover;
    filter: blur(2px);
    z-index: -1;
}

/* Toplevel */

.toplevel_container {
    position: relative;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -0%);
    display: flex;
    flex-direction: row;
    height: 4.5em;
    width: 80%;
    background-color: rgb(34, 34, 34);
    border-radius: 10px;
}

.toplevel_container_placeholder {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 3.2em;
    width: 100%;
    z-index: 0;
}

.toplevel_container img {
    aspect-ratio: 1 / 1;
    height: 100%;
    max-height: 2.5em;
    border-radius: 10px;
    border: 2px solid rgb(0, 0, 0);
}

.toplevel_container input {
    aspect-ratio: 1 / 1;
    height: 100%;
    max-height: 2.5em;
}

.toplevel_container .toplevel_title {
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}

.toplevel_title h3 {
    color: #ffffff;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 80px;
}

.top_nav_bar {
    backdrop-filter: blur(1px);
    height: 100%;
    transition: top 0.3s;
    overflow: hidden;
    width: 100%;
}

.top_nav_item {
    list-style-type: none;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* 不使用<a>元素時請記得加入padding: 15px;來調整排版 */

.top_nav_item a {
    font-family: 'Noto Sans HK';
    float: left;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    /* 上15左右30 */
    padding: 0.6em 30px; 
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.top_nav_item :hover {
    background-color: rgba(69, 255, 240, 0.274);
    color: #ffa600;
}

.top_nav_item :active {
    background-color: rgba(69, 255, 240, 0.274);
    color: #ffa600;
}

.top_nav_item_hidden {
    display: none;
}

.status_container {
    width: 80%;
    min-height: 400px;
    background-color: rgb(34, 34, 34);
    z-index: 0;
    position: relative;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -0%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status_item {
    position: relative;
    display: flex;
    width: 80%;
    height: 100px;
    scrollbar-width: thin;
    background-color: rgb(51, 51, 51);
    white-space: pre-wrap;
    border-radius: 10px;
    border-bottom: 3px solid rgb(255, 255, 255);
    margin-top: 40px;
    margin-left: 30px;
    align-items: center;
}

.status_item img {
    aspect-ratio: 1 / 1;
    max-height: 80%;
    padding-left: 20px;
}

.status_item .server_name {
    color: #ffffff;
    white-space: nowrap;
    font-size: 25px;
    font-weight: bold;
    padding-left: 20px;
}