/* client/components/auth-token/auth-token-view.css */
.bc-auth-token-view {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--accent-background);
}
.bc-auth-token-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
.bc-auth-token-status-note-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.bc-auth-token-label {
  color: var(--accent-foreground);
  font-weight: 500;
  flex-shrink: 0;
}
.bc-auth-token-note {
  font-weight: 500;
  word-break: break-word;
  min-width: 0;
}
.bc-auth-token-note-empty {
  color: var(--accent-foreground);
  font-style: italic;
}
.bc-auth-token-current-badge,
.bc-auth-token-protected-badge {
  font-size: 0.8em;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-weight: 500;
  flex-shrink: 0;
}
.bc-auth-token-current-badge {
  color: var(--bc-episodes-color);
  background-color: color-mix(in srgb, var(--bc-episodes-color) 10%, transparent);
}
.bc-auth-token-protected-badge {
  color: var(--accent-foreground);
  background-color: var(--accent-background);
}
.bc-auth-token-separator {
  color: var(--accent-midground);
  font-weight: 300;
}
.bc-auth-token-jti-value {
  font-family: var(--font-code);
  font-size: 0.9em;
  word-break: break-all;
  min-width: 0;
}
.bc-auth-token-dates {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.bc-date {
  font-size: 0.8rem;
  min-width: 0;
}
.bc-date {
  color: var(--accent-foreground);
}
.bc-auth-token-source-jti-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--accent-foreground);
}
.bc-auth-token-client-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--accent-foreground);
}
.bc-auth-token-source,
.bc-auth-token-user-agent,
.bc-auth-token-ip,
.bc-auth-token-geoip {
  min-width: 0;
  word-break: break-word;
}
.bc-auth-token-source-value {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text);
}
.bc-auth-token-ip code {
  font-family: var(--font-code);
  font-size: 0.9em;
  word-break: break-all;
}
.bc-auth-token-geoip-tz {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--accent-foreground);
  font-size: 0.85em;
}
@media (max-width: 600px) {
  .bc-auth-token-dates {
    flex-direction: column;
    gap: 0.5rem;
  }
  .bc-auth-token-source-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .bc-auth-token-client-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (max-width: 400px) {
  .bc-auth-token-header-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* client/components/auth-token/auth-token-list.css */

/* client/components/auth-token/auth-token-edit.css */
.bc-auth-token-edit {
  width: 100%;
}
.bc-auth-token-edit fieldset {
  min-width: 0;
}
.bc-auth-token-edit input[type=text] {
  width: 100%;
}
.bc-auth-token-legend {
  font-size: var(--small-font-size);
}
.bc-auth-token-note-edit {
  font-family: var(--font-body);
}
.bc-auth-token-edit-submit-line {
  display: flex;
  justify-content: space-between;
}
.button-cluster {
  display: inline-flex;
  gap: 0.4em;
}
.protect-checkbox {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/* client/components/auth-token/auth-token-manage-create.css */
.bc-token-create-copy-line {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.bc-token-create-copy-line-select {
  font-family: monospace;
}

/* client/components/auth-token/auth-token-manage.css */
.auth-token-manage {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--accent-background);
}
.bc-token-create-copy-line {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc-token-create-copy-line a {
  display: flex;
  align-items: center;
}
.bc-token-create-copy-line .bc-token-create-copy-line-select {
  flex-grow: 1;
}
.bc-feed-header-help-text {
  margin-top: 0.5em;
  margin-bottom: 10px;
}
.button-gap {
  display: inline-flex;
  gap: 0.4em;
}

/* client/components/pagination-buttons/index.css */
.pagination-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
  width: 100%;
}
.pagination-buttons-nav {
  display: inline-flex;
  gap: 0.3em;
  align-items: center;
}
.pagination-button {
  display: inline-flex;
  align-items: center;
}
.pagination-buttons-date {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.pagination-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.pagination-date-picker {
  font: inherit;
  line-height: 1;
  height: 0.5em;
  padding: 0;
  min-width: 0;
  width: auto;
  max-width: 11ch;
  box-sizing: content-box;
  field-sizing: content;
}

/* client/account/auth-tokens/auth-token-field.css */

/* client/account/passkeys/passkeys-field.css */
.bc-passkey-manage {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--accent-background);
}
.bc-passkey-register-form {
  margin-bottom: 1rem;
}
.bc-passkey-register-form input[type=text] {
  width: 100%;
  box-sizing: border-box;
}
.bc-passkey-list {
  display: flex;
  flex-direction: column;
}
.bc-passkey-item {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent-background);
}
.bc-passkey-name {
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.bc-passkey-details {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--accent-foreground);
  margin-bottom: 0.25rem;
}
.bc-passkey-detail {
  min-width: 0;
  word-break: break-word;
}
.bc-passkey-edit-submit-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bc-passkey-actions {
  margin-top: 0;
}
.bc-passkey-item input[type=text] {
  width: 100%;
  box-sizing: border-box;
}
.bc-passkey-edit-submit-line .button-cluster {
  display: inline-flex;
  gap: 0.4em;
}
.bc-empty-state,
.bc-loading,
.bc-info-message,
.bc-error-message {
  margin-top: 0.5rem;
  color: var(--accent-foreground);
}
@media (max-width: 640px) {
  .bc-passkey-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  .bc-passkey-edit-submit-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* client/account/style.css */
.bc-account-password-edit-submit-line .button-cluster,
.bc-account-username-edit .button-cluster,
.bc-account-email-edit-submit-line .button-cluster,
.reset-buttons-state,
.button-gap,
.email-view-edit-line {
  display: inline-flex;
  gap: 0.4em;
}
.password-view,
.username-view {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.4em;
}
.bc-account-username-edit input.block,
.bc-account-password-edit input.block,
.bc-account-email-edit input.block {
  width: 100%;
  box-sizing: border-box;
}
.email-view-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.newsletter-label {
  margin-right: 0.5em;
}
/*# sourceMappingURL=style-JH5E5PJO.css.map */
