/* Alt çubuk: geri bildirim + öğrenildi */
.site-feedback-bar {
  margin-top: 2rem;
  padding: 0.65rem 2rem;
  border-top: 1px solid var(--theme-border);
  background: var(--theme-bg-subtle);
}

.site-feedback-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.feedback-open-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  color: var(--theme-link);
  text-decoration: underline;
  cursor: pointer;
}

.feedback-open-link:hover {
  color: var(--theme-accent);
}

.quiz-learned-form {
  margin: 0;
  flex: 0 0 auto;
}

.quiz-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  flex: 0 0 auto;
}

.quiz-study-form {
  margin: 0;
}

.quiz-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  color: #1e40af;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.quiz-study-link:hover {
  color: #1d4ed8;
}

.quiz-study-link.is-active {
  color: #0f766e;
  font-weight: 600;
}

.quiz-study-icon {
  flex-shrink: 0;
}

.quiz-learned-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  color: #64748b;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.quiz-learned-link:hover {
  color: #0f172a;
}

/* Modal */
.feedback-modal[hidden] {
  display: none !important;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.feedback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.feedback-modal-panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.feedback-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.feedback-modal-tabs {
  display: flex;
  gap: 0.25rem;
}

.feedback-tab {
  padding: 0.45rem 0.85rem;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
}

.feedback-tab:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.feedback-tab.active {
  color: #1e40af;
  border-bottom-color: #1e40af;
}

.feedback-modal-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background: #f1f5f9;
  border-radius: 6px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}

.feedback-modal-close:hover {
  background: #e2e8f0;
}

.feedback-modal-body {
  padding: 1rem 1.15rem 1.25rem;
}

.feedback-tab-panel {
  display: none;
}

.feedback-tab-panel.active {
  display: block;
}

.feedback-modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.site-feedback-intro {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #475569;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feedback-form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #334155;
}

.feedback-form input[type="text"],
.feedback-form select,
.feedback-form textarea,
.feedback-form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.6rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.btn-feedback-send {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-feedback-send:hover {
  background: #1d4ed8;
}

.feedback-readonly {
  background: #f1f5f9 !important;
  color: #334155;
  cursor: not-allowed;
}

.feedback-login-hint {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.92rem;
}

.feedback-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-feedback-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: #e2e8f0;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-feedback-secondary:hover {
  background: #cbd5e1;
}

.feedback.flash-ok {
  color: #166534;
  background: #dcfce7;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.feedback-context-intro {
  font-size: 0.88rem;
  color: #475569;
  margin: 0 0 0.75rem;
}

.feedback-context-dl {
  margin: 0;
  font-size: 0.88rem;
}

.feedback-context-dl dt {
  font-weight: 600;
  color: #334155;
  margin-top: 0.5rem;
}

.feedback-context-dl dd {
  margin: 0.2rem 0 0;
}

.feedback-context-url {
  word-break: break-all;
  font-size: 0.8rem;
}

.feedback-sent-panel {
  margin: 0;
}

.feedback-sent-done {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.feedback-sent-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
}

.feedback-sent-done .feedback.ok {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feedback-sent-done .feedback-sent-actions {
  justify-content: center;
}

.feedback-sent-form textarea {
  width: 100%;
  min-height: 5rem;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  resize: vertical;
}

.feedback-sent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

body.feedback-modal-open {
  overflow: hidden;
}

/* Admin */
.app-page .page-main.admin-page {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.admin-shell {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 3.25rem);
}

.admin-sidebar {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: var(--theme-sidebar-bg, var(--theme-bg-subtle));
  border-right: 1px solid var(--theme-border);
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--theme-border);
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.5rem 2rem;
  background: var(--theme-bg-page);
  color: var(--theme-text);
}

.admin-page-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-page-head h1 {
  margin: 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--theme-text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  line-height: 1.35;
}

.admin-nav-item:hover {
  background: var(--theme-bg-muted);
}

.admin-nav-item.active {
  background: var(--theme-active-bg);
  border-color: var(--theme-border-strong);
  color: var(--theme-text-heading);
  font-weight: 600;
}

.admin-nav-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #fef08a;
  color: #713f12;
  font-weight: 700;
}

.admin-nav-badge--mailbox {
  background: #dc2626;
  color: #fff;
}

.admin-nav-badge--blink {
  animation: admin-mailbox-badge-blink 1.1s ease-in-out infinite;
}

.admin-nav-item--unread {
  animation: admin-mailbox-nav-blink 1.4s ease-in-out infinite;
}

.admin-nav-item--new-ping {
  animation: admin-mailbox-nav-ping 0.55s ease-out 3;
}

@keyframes admin-mailbox-badge-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.45);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
  }
}

@keyframes admin-mailbox-nav-blink {
  0%,
  100% {
    background: var(--theme-bg-muted);
    border-color: transparent;
  }
  50% {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.35);
  }
}

@keyframes admin-mailbox-nav-ping {
  0% {
    box-shadow: inset 0 0 0 0 rgba(220, 38, 38, 0.55);
  }
  70% {
    box-shadow: inset 4px 0 0 0 rgba(220, 38, 38, 0.85);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.admin-content {
  width: 100%;
}

@media (max-width: 768px) {
  .admin-shell {
    flex-direction: column;
    min-height: 0;
  }

  .admin-sidebar {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .admin-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-sidebar-footer {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .admin-main {
    padding: 1rem;
  }
}

.admin-section-title {
  margin: 2rem 0 0.5rem;
  font-size: 1.15rem;
  color: #0f172a;
}

.admin-section-title--feedback {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e2e8f0;
}

.admin-section-meta {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
}

.admin-users-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}

.admin-users-toolbar .admin-section-title {
  margin: 0;
}

.btn-admin-add-user {
  padding: 0.45rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-admin-add-user:hover {
  background: #1d4ed8;
}

.btn-admin-edit-user {
  padding: 0.3rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  cursor: pointer;
}

.btn-admin-edit-user:hover {
  background: #dbeafe;
}

.admin-password-hint {
  margin: 0.25rem 0 0;
  color: #64748b;
}

.admin-user-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-user-modal[hidden] {
  display: none !important;
}

.admin-user-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.admin-user-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

body.admin-user-modal-open {
  overflow: hidden;
}

.admin-modal-dialog--wide {
  max-width: 42rem;
}

.admin-exam-access {
  margin: 1rem 0 0;
  padding: 0.75rem 0 0;
  border: none;
  border-top: 1px solid #f1f5f9;
}

.admin-exam-access legend {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  padding: 0;
}

.admin-exam-access-hint {
  margin: 0.35rem 0 0.65rem;
  color: #64748b;
}

.admin-exam-access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-exam-access-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.admin-exam-access-row:last-child {
  border-bottom: none;
}

.admin-exam-access-label {
  font-weight: 500;
  color: #0f172a;
}

.admin-exam-access-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.admin-exam-access-row.is-public .admin-exam-access-badge {
  background: #dcfce7;
  color: #166534;
}

.admin-exam-access-row.is-private .admin-exam-access-badge {
  background: #f1f5f9;
  color: #475569;
}

.admin-exam-access-note {
  font-size: 0.82rem;
  color: #64748b;
}

.admin-exam-access-grant {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #334155;
  cursor: pointer;
  white-space: nowrap;
}

.admin-exam-access-row--visibility {
  grid-template-columns: 1fr auto auto;
}

.admin-exam-visibility-form {
  max-width: 42rem;
}

.admin-exam-visibility-toggle {
  font-weight: 500;
}

.admin-user-exams-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.admin-user-exams-sidebar {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.85rem 1rem;
}

.admin-user-exams-sidebar-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
}

.admin-user-exams-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 70vh;
  overflow: auto;
}

.admin-user-exams-link {
  display: block;
  padding: 0.55rem 0.45rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e2e8f0;
}

.admin-user-exams-link:last-child {
  border-bottom: none;
}

.admin-user-exams-link:hover {
  background: #eef2ff;
}

.admin-user-exams-link.is-active {
  background: #dbeafe;
  box-shadow: inset 3px 0 0 #2563eb;
}

.admin-user-exams-link strong {
  display: block;
  font-size: 0.92rem;
}

.admin-user-exams-link small {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.admin-user-exams-link-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #475569;
}

.admin-user-exams-main {
  min-width: 0;
}

.admin-user-exams-head h2 {
  margin: 0 0 0.25rem;
}

.admin-user-exams-sub {
  margin: 0 0 0.75rem;
  color: #64748b;
}

.admin-user-exams-empty {
  color: #64748b;
  padding: 1rem 0;
}

.admin-user-exams-form {
  max-width: 42rem;
}

@media (max-width: 860px) {
  .admin-user-exams-layout {
    grid-template-columns: 1fr;
  }

  .admin-user-exams-list {
    max-height: 16rem;
  }
}

.admin-col-exams {
  max-width: 10rem;
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px 12px 0 0;
}

.admin-modal-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.admin-modal-close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.admin-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.admin-modal-body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.admin-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.btn-admin-cancel {
  padding: 0.45rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
}

.btn-admin-cancel:hover {
  background: #e2e8f0;
}

.admin-add-user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.75rem 1rem;
}

.admin-add-user-form input,
.admin-add-user-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.4rem 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

.admin-add-user-form label {
  font-size: 0.85rem;
  font-weight: 600;
}

.admin-add-user-check {
  display: flex;
  align-items: flex-end;
}

table.admin-users td {
  white-space: nowrap;
}

table.admin-users td:nth-child(3) {
  white-space: normal;
  max-width: 220px;
  word-break: break-all;
}

.admin-top-links {
  margin: 0;
  font-size: 0.9rem;
}

.admin-backup-head {
  margin-bottom: 1.25rem;
}

.admin-backup-nav {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.admin-backup-section {
  margin: 0 0 2rem;
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  max-width: 42rem;
}

.admin-backup-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.admin-backup-desc {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.admin-backup-desc--spaced {
  margin-top: 1.25rem;
}

.admin-backup-section--danger {
  border-color: #fecaca;
  background: #fff7f7;
}

.admin-backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-backup-form {
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.admin-backup-form--sqlite {
  margin-bottom: 0.5rem;
}

.admin-backup-hint {
  margin: 0;
  color: #64748b;
}

.admin-backup-hint--warn {
  color: #b45309;
}

.admin-backup-subheading {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.95rem;
}

.admin-backup-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
}

.admin-backup-stat {
  margin: 0;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.admin-backup-stat dt {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.admin-backup-stat dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.admin-backup-stat-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: #64748b;
}

.admin-backup-migrations {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.admin-backup-migrations .is-applied {
  color: #166534;
}

.admin-backup-migrations .is-pending {
  color: #b45309;
}

.admin-backup-meta {
  margin: 0 0 0.75rem;
  color: #64748b;
}

.btn-feedback-send--secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.btn-feedback-send--secondary:hover {
  background: #f1f5f9;
}

.admin-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
}

.admin-site-links a {
  font-weight: 600;
}

.admin-site-form {
  margin-top: 0.5rem;
}

.admin-site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}

.admin-site-grid input,
.admin-site-grid textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.admin-site-full {
  grid-column: 1 / -1;
}

.admin-site-check {
  grid-column: 1 / -1;
}

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.admin-stat {
  padding: 0.5rem 1rem;
  background: #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
}

.admin-stat strong {
  margin-right: 0.35rem;
}

.admin-filters {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-filters a {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  font-size: 0.88rem;
}

.admin-filters a.active {
  background: #1e40af;
  color: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
}

table.admin-feedback {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.admin-feedback th,
table.admin-feedback td {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

table.admin-feedback th {
  background: #f8fafc;
}

table.admin-feedback a {
  color: #1e40af;
  word-break: break-all;
}

table.admin-feedback a:hover {
  text-decoration: underline;
}

.admin-msg {
  max-width: 280px;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-actions form {
  display: inline;
  margin-right: 0.25rem;
}

.admin-actions button {
  font-size: 0.78rem;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
}

.badge-type-feedback { background: #dbeafe; }
.badge-type-bug { background: #fee2e2; }
.badge-type-error { background: #ffedd5; }
.badge-status-new { background: #fef08a; }
.badge-status-read { background: #e2e8f0; }
.badge-status-resolved { background: #bbf7d0; }
