* {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    font-weight: lighter;
}

body {
    width: 100%;
    background-color: #14142B;
}

#app {
    padding: 20px;
}

#main {
    margin: 0 auto;
    width: 1000px;
    background-color: #24263A;
    padding: 20px;
    border-radius: 10px;
}

#ttop {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
#ttop>div:first-of-type {
    flex-grow: 1;
}

#ttop select {
    background-color: #14142B;
    color: #999;
    outline: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

#top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.top-item {
    display: grid;
    gap: 10px;
    padding: 10px;
    background-color: #14142B;
    border-radius: 10px;
}

#top .title {
    font-size: 20px;
    color: #7E7E7E;
}

#top .value {
    font-size: 18px;
    color: #999;
    text-align: center;
}

#bottom .title {
    margin: 20px 0;
    font-size: 32px;
    color: #999;
}

#bottom .table-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

#bottom .table-header-item {
    padding: 10px;
    background-color: #343542;
    font-size: 20px;
    text-align: center;
    color: white;
}

#bottom .table-header-item:first-of-type {
    border-radius: 10px 0 0 0;
}

#bottom .table-header-item:last-of-type {
    border-radius: 0 10px 0 0;
}

#bottom .table-body-item {
    margin-top: 3px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;

    padding: 10px;
    background-color: #14142B;
    font-size: 20px;
    text-align: center;
    color: white;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}