* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background: #ffffff;
    color: #000000;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

body {
    padding: 16px;
}

header {
    margin-bottom: 16px;
}

.controls {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

#repo-url {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font: inherit;
}

button,
select {
    padding: 6px 10px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font: inherit;
    cursor: pointer;
}

select:disabled,
button:disabled {
    color: #888;
    border-color: #888;
    cursor: default;
}

.breadcrumbs {
    padding: 4px 0;
    word-break: break-all;
}

.breadcrumbs a {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.breadcrumbs span.sep {
    margin: 0 4px;
}

.status {
    padding: 4px 0;
    color: #000;
    min-height: 1.4em;
}

main {
    border-top: 1px solid #000;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 6px 8px;
    border-bottom: 1px solid #000;
}

th {
    font-weight: bold;
}

tbody tr {
    cursor: pointer;
}

tbody tr:hover {
    background: #f0f0f0;
}

td.size {
    text-align: right;
    width: 120px;
}

td.type {
    width: 80px;
}

.hidden {
    display: none;
}
