body {
    font-family: Roboto, sans-serif;
    color: #1A3A5C;
    margin: 0 auto;
    overflow-x: hidden;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #C8DCE8;
    border-top: 3px solid #2A8FA8;
    padding: 8px;
}

.nav-logo {
    font-weight: 600;
    color: #1A3A5C;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo svg {
    width: 48px;
    height: 48px;
}

.container {
    max-width: 900px;
    margin: 24px auto;

}

label {
    display: block;
    margin: 12px 0;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

input.error {
    border: 2px solid #cc0000;
    background: #fff5f5;
}

button {
    padding: 12px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #2A8FA8;
    border-radius: 2px;
    background-color: #2A8FA8;
    text-decoration: none;
}

button:hover {
    background-color: #E07B20;
    border-color: #E07B20;
    cursor: pointer;
}

button:disabled {
    background-color: #fff;
    border-color: #6B8AA8;
    color: #6B8AA8;
    cursor: not-allowed;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: end;
}

.step-btns {
    display: flex;
    flex-direction: column;
    margin-top: 14px;
    margin-right: 8px;
}

.step-btns span {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 4px;
}

#token_status {
    margin-left: 4px;
    font-size: 0.75rem;

    font-weight: 600;
}

#token_status.error {
    color: #cc0000;
}

#token_status.ok {
    color: #0a8a0a;
}

#blob_fetch_log {
    margin-top: 12px;
    padding: 8px 10px;
    border: 1px solid #111;
    background: #000;
    color: #39ff14;
    white-space: normal;
    line-height: 1.2;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.9rem;
}

.line {
    margin: 0;
    padding: 0;
}