* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100dvh;
    background-color: lightgrey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.bar-wrapper {
    width: 300px;
    font-family: system-ui, sans-serif;
}

.bar-label {
    margin-bottom: 6px;
    font-size: 14px;
}

.bar {
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    height: 24px;
}

.bar-fill {
    background: #3b82f6;
    height: 100%;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease;
}

#table {
    width: 90%;
}

td {
    text-align: center;
}