/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 *
 *= require journey_chat
 */

:root {
  /* Reduce base font size (default is 100%) */
  --pico-font-size: 100%;

  /* Reduce vertical spacing between typography elements */
  --pico-typography-spacing-vertical: 1rem;

  /* Tighten line height slightly (default is 1.5) */
  --pico-line-height: 1.4;
  --pico-typography-spacing-vertical: 2rem;

  /* Reduce general spacing */
  --pico-spacing: 0.5rem;

  /* Reduce block spacing (margins between sections) */
  --pico-block-spacing-vertical: 0.75rem;
  --pico-block-spacing-horizontal: 1rem;

  /* More rounded corners (default is 0.25rem) */
  --pico-border-radius: 0.75rem;

  --pico-grid-column-gap: 2rem;
}

h1 {
  margin-top: 1rem;
}

input, textarea {
  border-radius: var(--pico-border-radius);
}

.cursive {
  font-family: Pacifico, cursive;
  font-weight: 300;
}

.muted {
  color: var(--pico-muted-color);
}

.logo {
  width: 4rem;
  height: 4rem;
}

.flash {
  background-color: var(--pico-background-color);
  padding: 1rem;
  border-radius: var(--pico-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Journey card styles */
.journey-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.journey-actions {
  display: flex;
  gap: 1rem;
}

/* Participant list item styles */
.participant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.participant-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.participant-info h5 {
  margin: 0;
}

.participant-actions {
  display: flex;
  gap: 1rem;
}

.public-journey {
  padding: 2rem;
  border: 1px solid var(--pico-muted-border-color);
  border-radius: var(--pico-border-radius);
  box-shadow: var(--pico-box-shadow);
}
