@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    color: #131a26;
    font-family: sans-serif;
    font-size: 1rem;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

#app .container {
    margin: 0 auto;
    max-width: 980px;
    padding: 0 20px;
    width: 100%;
}

#header {
    background-color: #121a26;
    color: #3bd672;
    padding: 50px;
    width: 100%;
}

#header .container {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}

#header .logo {
    font-size: 1.5rem;
    margin: 0 auto;
    max-width: 95%; 
    width: fit-content; 
}

#uptime {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    margin-top: -30px;
    overflow: hidden;
    padding: 15px 0;
}

#uptime .site {
    border-bottom: 1px solid #e6e7e8;
    margin: 0 30px;
    padding: 25px 0;
}

#uptime .site .meta {
    align-items: baseline;
    display: flex;
}

#uptime .site .meta .name {
    font-size: 0.96rem;
    margin-bottom: 1rem; 
}

#uptime .site .meta .status {
    font-size:0.96rem;
    margin-left: auto;
    padding-left: 0;
}

#uptime .site .meta .status.ok {
    color: #3bd672;
}
#uptime .site .meta .status.error {
    color: #ff4747;
}

#uptime .site .timeline {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 10px;
}

#uptime .site .timeline i {
    border-radius: 10px;
    flex-grow: 1;
    height: 25px;
    margin: 0 1px;
}

#uptime .site .timeline i.ok {
    background-color: #3bd672;
}
#uptime .site .timeline i.error {
    background-color: #ff4747;
}

#uptime .site .summary {
    color: #9aa2af;
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
    line-height: 15px;
}

#footer {
    background-color: #fff;
    font-size: 0.8rem;
    line-height: 25px;
    text-align: center;
    border: 2px solid #ffffff;
    padding: 10px;
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

#footer a {
    color: #000000;
    font-weight: 1000;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #ffffff00;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #202b3c86;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0d141da4;
}