/* Gunesis Project Board — base styles */

:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #213547;
  background-color: #f5f5f5;
}

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

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  background-image: url('/assets/godot.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(245, 245, 245, 0.88);
  z-index: -1;
}

/* Nav bar */
#nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #213547;
  color: #fff;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
}

#sign-out-btn {
  padding: 0.35rem 0.75rem;
  border: 1px solid #fff;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
}

#sign-out-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Main content area */
#main-content {
  flex: 1;
  padding: 1rem;
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

.loading-overlay[hidden] {
  display: none;
}

.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #ccc;
  border-top-color: #213547;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Roadmap Timeline ── */

.roadmap-timeline {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.roadmap-phase-card {
  flex: 0 0 200px;
  border-left: 4px solid #ccc;
  border-radius: 6px;
  background: #fff;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.15s ease;
}

.roadmap-phase-card:hover,
.roadmap-phase-card:focus-visible {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  outline: none;
}

/* Archive phase — greyed out */
.roadmap-phase-card--archive {
  border-left-color: #9e9e9e;
  background: #f0f0f0;
  opacity: 0.7;
}

/* Warning state */
.roadmap-phase-card--warning {
  background: #fffde7;
}

/* Overdue state */
.roadmap-phase-card--overdue {
  background: #fbe9e7;
}

.roadmap-phase-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.roadmap-phase-title {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roadmap-status-badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  white-space: nowrap;
}

.roadmap-status-badge--warning {
  background: #fff9c4;
  color: #f9a825;
}

.roadmap-status-badge--overdue {
  background: #ffcdd2;
  color: #c62828;
}

.roadmap-phase-date {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.roadmap-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roadmap-progress-bar {
  flex: 1;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.roadmap-progress-fill {
  height: 100%;
  background: #43a047;
  border-radius: 3px;
  transition: width 0.2s ease;
}

.roadmap-progress-label {
  font-size: 0.75rem;
  color: #555;
  white-space: nowrap;
}

/* ── Project Overview Page ── */

.overview-page {
  max-width: 960px;
  margin: 0 auto;
}

.overview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.overview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #213547;
}

.overview-add-phase-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  background: #1E88E5;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.overview-add-phase-btn:hover {
  background: #1565C0;
}

.overview-section {
  margin-bottom: 2rem;
}

.overview-section-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #213547;
}

/* Stats grid */
.overview-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.overview-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.overview-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #213547;
}

.overview-stat-label {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.15rem;
}

/* Phase table */
.overview-phase-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.overview-phase-table th,
.overview-phase-table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #eee;
}

.overview-phase-table th {
  background: #f5f5f5;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.overview-phase-table td {
  font-size: 0.875rem;
}

/* Bar chart */
.overview-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border-radius: 6px;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.overview-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.overview-bar-label {
  flex: 0 0 90px;
  font-size: 0.75rem;
  color: #555;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overview-bar-track {
  flex: 1;
  height: 18px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.overview-bar-fill {
  height: 100%;
  background: #43a047;
  border-radius: 3px;
  transition: width 0.2s ease;
}

.overview-bar-value {
  flex: 0 0 36px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #213547;
}

.overview-empty {
  color: #888;
  font-size: 0.875rem;
  font-style: italic;
}


/* ── Wizard Modal (shared by Phase & Task wizards) ── */

.wizard-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
}

.wizard-modal {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.wizard-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #213547;
  margin-bottom: 0.5rem;
}

.wizard-step-indicator {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

.wizard-input-group {
  margin-bottom: 1rem;
}

.wizard-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.25rem;
}

.wizard-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.wizard-input:focus {
  outline: 2px solid #1E88E5;
  border-color: #1E88E5;
}

.wizard-textarea {
  resize: vertical;
}

.wizard-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
  background: #fff;
}

.wizard-error {
  color: #c62828;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1.2em;
}

.wizard-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.wizard-btn-row {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.wizard-btn {
  padding: 0.45rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.wizard-btn--cancel {
  background: #e0e0e0;
  color: #555;
}

.wizard-btn--cancel:hover {
  background: #bdbdbd;
}

.wizard-btn--back {
  background: #e0e0e0;
  color: #555;
}

.wizard-btn--back:hover {
  background: #bdbdbd;
}

.wizard-btn--next {
  background: #1E88E5;
  color: #fff;
}

.wizard-btn--next:hover {
  background: #1565C0;
}

.wizard-btn--delete {
  background: #E53935;
  color: #fff;
}

.wizard-btn--delete:hover {
  background: #C62828;
}

.wizard-btn--small {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}

/* Reassignment list (phase delete) */
.wizard-reassign-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wizard-reassign-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wizard-reassign-task {
  flex: 1;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dependency list (task wizard) */
.wizard-dep-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.wizard-dep-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  background: #f5f5f5;
  border-radius: 4px;
}

.wizard-dep-add {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.wizard-dep-add .wizard-select {
  flex: 1;
}

/* ── Task Card ── */

.task-card {
  background: #fff;
  border-radius: 6px;
  border-left: 4px solid #ccc;
  border-top: 2px solid transparent;
  padding: 0.6rem 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.15s ease, opacity 0.15s ease;
  user-select: none;
}

.task-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.task-card--dragging {
  opacity: 0.5;
}

.task-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #213547;
  margin-bottom: 0.35rem;
}

.task-card-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.task-card-priority {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 600;
}

.task-card-priority--low {
  background: #e8f5e9;
  color: #2e7d32;
}

.task-card-priority--medium {
  background: #fff3e0;
  color: #e65100;
}

.task-card-priority--high {
  background: #fce4ec;
  color: #c62828;
}

.task-card-priority--critical {
  background: #f44336;
  color: #fff;
}

.task-card-type {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-weight: 600;
}

.task-card-blocked {
  display: block;
  font-size: 0.7rem;
  color: #c62828;
  margin-top: 0.2rem;
}

.task-card--blocked {
  border-left-style: dashed;
}

.task-card-at-risk {
  display: block;
  font-size: 0.7rem;
  color: #e65100;
  margin-top: 0.2rem;
}

.task-card--at-risk {
  background: #fff8e1;
}

/* ── Kanban Columns ── */

.kanban-columns {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  min-height: 300px;
}

.kanban-column {
  flex: 0 0 200px;
  background: #f0f0f0;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.kanban-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem;
  background: #e0e0e0;
  border-radius: 6px 6px 0 0;
}

.kanban-column-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #213547;
}

.kanban-column-count {
  font-size: 0.7rem;
  background: #bdbdbd;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-weight: 600;
}

.kanban-task-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  min-height: 60px;
  transition: background 0.15s ease;
}

.kanban-task-list--dragover {
  background: #e3f2fd;
}

/* ── Kanban Page ── */

.kanban-page {
  max-width: 1280px;
  margin: 0 auto;
}

.kanban-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kanban-back-btn {
  padding: 0.4rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #213547;
  font-size: 0.85rem;
  cursor: pointer;
}

.kanban-back-btn:hover {
  background: #f5f5f5;
}

.kanban-phase-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #213547;
  border-left: 4px solid transparent;
  padding-left: 0.5rem;
  flex: 1;
}

.kanban-add-task-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  background: #43A047;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.kanban-add-task-btn:hover {
  background: #2E7D32;
}

.kanban-filter-section {
  margin-bottom: 1rem;
}

.kanban-board-area {
  margin-bottom: 1.5rem;
}

.kanban-legend-section {
  margin-top: 1rem;
}

/* ── Filter & Search Bar ── */

.filter-bar {
  margin-bottom: 1rem;
}

.filter-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75rem;
}

.filter-input {
  padding: 0.4rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85rem;
  min-width: 180px;
}

.filter-input:focus {
  outline: 2px solid #1E88E5;
  border-color: #1E88E5;
}

.filter-select {
  padding: 0.4rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.85rem;
  background: #fff;
}

.filter-clear-btn {
  padding: 0.4rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-clear-btn:hover {
  background: #f5f5f5;
}

.filter-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-empty {
  color: #888;
  font-size: 0.875rem;
  font-style: italic;
}

.filter-group {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.filter-group-header {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: #f5f5f5;
  border-left: 4px solid #ccc;
  color: #213547;
}

.filter-group-tasks {
  padding: 0.25rem 0;
}

.filter-task-item {
  padding: 0.35rem 0.75rem 0.35rem 1.25rem;
  font-size: 0.85rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.filter-task-item:last-child {
  border-bottom: none;
}

.filter-task-item:hover {
  background: #f5f5f5;
}

/* ── Color Legend ── */

.color-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.color-legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.color-legend-label {
  font-size: 0.75rem;
  color: #555;
  white-space: nowrap;
}

/* ── Task Detail Popup ── */

.task-detail-popup {
  max-width: 520px;
}

.task-detail-info {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 1rem;
}

.task-detail-info p {
  margin-bottom: 0.35rem;
}

.task-detail-move {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.task-detail-move .wizard-select {
  flex: 1;
}


/* ── Sign-in Page ── */

.sign-in-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1rem;
  text-align: center;
}

.sign-in-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #213547;
}

.sign-in-page p {
  color: #666;
  font-size: 1rem;
}

/* ── Toast Notifications ── */

.toast-notification {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  max-width: 420px;
  animation: toast-slide-in 0.25s ease;
}

@keyframes toast-slide-in {
  from { transform: translateY(1rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.toast-notification--info {
  background: #e3f2fd;
  color: #1565c0;
  border-left: 4px solid #1e88e5;
}

.toast-notification--error {
  background: #fbe9e7;
  color: #c62828;
  border-left: 4px solid #e53935;
}

.toast-notification--warning {
  background: #fff8e1;
  color: #e65100;
  border-left: 4px solid #fb8c00;
}

.toast-message {
  flex: 1;
  font-size: 0.85rem;
}

.toast-actions {
  display: flex;
  gap: 0.35rem;
}

.toast-btn {
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.toast-btn--retry {
  background: #1e88e5;
  color: #fff;
}

.toast-btn--retry:hover {
  background: #1565c0;
}

.toast-btn--dismiss {
  background: transparent;
  color: inherit;
  font-size: 0.9rem;
}

.toast-btn--dismiss:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Wizard validation highlight */
.wizard-input--invalid {
  border-color: #e53935;
  background: #fbe9e7;
}

/* ── Sign-in Error ── */

.sign-in-error {
  margin: 1rem auto;
  max-width: 400px;
  padding: 0.75rem 1rem;
  background: #fbe9e7;
  border: 1px solid #e53935;
  border-radius: 6px;
  color: #c62828;
  font-size: 0.9rem;
  text-align: center;
}

.sign-in-page {
  text-align: center;
  padding: 4rem 1rem;
}

.sign-in-page h1 {
  font-size: 2rem;
  color: #213547;
  margin-bottom: 0.5rem;
}

.sign-in-page p {
  color: #666;
  margin-bottom: 1.5rem;
}

.sign-in-page #g_id_signin {
  display: inline-block;
}

/* ── Global Error Banner ── */

.error-banner {
  background: #fbe9e7;
  border-bottom: 2px solid #e53935;
  padding: 0;
}

.error-banner-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  color: #c62828;
  font-size: 0.85rem;
  border-bottom: 1px solid #ffcdd2;
}

.error-banner-entry:last-child {
  border-bottom: none;
}

.error-banner-dismiss {
  background: none;
  border: none;
  color: #c62828;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.25rem;
  margin-left: 0.5rem;
}

.error-banner-dismiss:hover {
  color: #b71c1c;
}

/* ── Error Page ── */

.error-page {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.error-page h1 {
  font-size: 1.5rem;
  color: #c62828;
  margin-bottom: 1rem;
}

.error-page p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.error-page-retry {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  background: #1E88E5;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.error-page-retry:hover {
  background: #1565C0;
}

/* ── Task Comments ── */

.task-comments-section {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}

.task-comments-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: #213547;
  margin-bottom: 0.5rem;
}

.task-comments-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 0.75rem;
}

.task-comments-empty {
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
}

.task-comment {
  padding: 0.5rem;
  background: #f9f9f9;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.task-comment-meta {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.task-comment-body {
  font-size: 0.85rem;
  color: #333;
}

.task-comment-form {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.task-comment-form .wizard-textarea {
  flex: 1;
}

/* ── Markdown Content ── */

.markdown-content h1, .markdown-content h2, .markdown-content h3 {
  margin: 0.5rem 0 0.25rem;
  color: #213547;
}

.markdown-content h1 { font-size: 1.1rem; }
.markdown-content h2 { font-size: 1rem; }
.markdown-content h3 { font-size: 0.9rem; }

.markdown-content p {
  margin: 0.25rem 0;
}

.markdown-content code {
  background: #f0f0f0;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.85em;
}

.markdown-content pre {
  background: #f0f0f0;
  padding: 0.5rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 0.5rem 0;
}

.markdown-content pre code {
  background: none;
  padding: 0;
}

.markdown-content ul {
  padding-left: 1.5rem;
  margin: 0.25rem 0;
}

.markdown-content a {
  color: #1E88E5;
}

.task-detail-description {
  background: #fafafa;
  padding: 0.5rem;
  border-radius: 4px;
  margin: 0.25rem 0 0.5rem;
}
