@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body { 
    font-family: 'Roboto Mono', monospace; 
    background-color: #323437; 
    color: #d1d0c5; 
    margin: 0; 
    padding: 40px 20px; 
}
.container { 
    max-width: 800px; 
    margin: 0 auto; 
}
.header {
    text-align: center;
    margin-bottom: 40px;
}
.header h1 {
    font-weight: normal;
    font-size: 2rem;
    margin: 0;
    color: #d1d0c5;
}
.header p {
    color: #646669;
    margin: 5px 0 20px 0;
}

.time-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.time-selector a {
    background-color: #2c2e31;
    color: #646669;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}
.time-selector a:hover {
    color: #d1d0c5;
}
.time-selector a.active {
    background-color: #e2b714;
    color: #323437;
    font-weight: bold;
}

table { 
    width: 100%; 
    border-collapse: collapse; 
    text-align: left;
}
th, td { 
    padding: 15px 10px; 
    border-bottom: 1px solid #2c2e31; 
}
th { 
    color: #646669; 
    font-weight: normal; 
    text-transform: lowercase;
}
tr:hover { 
    background-color: #2c2e31; 
}
.rank {
    color: #646669;
    width: 50px;
}
.name {
    color: #d1d0c5;
    text-decoration: none;
}
.name:hover {
    color: #e2b714;
}
.val {
    color: #e2b714;
}

.nav {
    margin-top: 40px;
    text-align: center;
}
.nav a {
    color: #646669;
    text-decoration: none;
    transition: color 0.2s;
}
.nav a:hover {
    color: #d1d0c5;
}