#token-switcher {
    padding: 10px 16px;
    background: #1b1b1b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: sans-serif;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}
#token-switcher input {
    padding: 6px 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #2d2d2d;
    color: #fff;
    width: 220px;
    font-family: monospace;
    font-size: 13px;
}
#token-switcher button {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.btn-user1 { background: #49cc90; color: #fff; }
.btn-user2 { background: #61affe; color: #fff; }
.btn-user1:hover { background: #3bba80; }
.btn-user2:hover { background: #4fa0ef; }
.btn-active { outline: 2px solid #fff; outline-offset: 1px; }
.separator { margin: 0 4px; color: #555; }
.token-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.token-identity { color: #aaa; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.token-identity.valid { color: #49cc90; }
.token-identity.expired { color: #f93e3e; }
.token-expiry { color: #f93e3e; white-space: nowrap; }
#curl-bar {
    padding: 6px 16px;
    background: #252525;
    color: #ccc;
    font-family: monospace;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: sticky;
    top: 52px;
    z-index: 999;
}
#curl-bar span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.btn-copy { background: #fca130; color: #fff; }
.btn-copy:hover { background: #e89520; }
