body {
    font-family: sans-serif;
    padding: 1rem;
    background-color: white;
}

#root {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tabs {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1rem;
    border-bottom: 1px solid #ddd;
}

.tabs a {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    color: #777;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}

.tabs a.active {
    color: #111;
    font-weight: 600;
    border-bottom-color: #111;
}
