/*
 * 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.
 */

.event-assignment-row {
  scroll-margin-top: 7rem;
  transition: background-color 3.5s ease;
}

.event-assignment-row.assignment-row-highlight {
  background-color: color-mix(in oklab, var(--primary) 14%, var(--background));
  transition-duration: 150ms;
}

.mobile-assignment-picker-body {
  overflow: hidden;
}

[data-assignment-workspace-chevron].hidden {
  display: none !important;
}

.assignment-publication-review-grid {
  grid-template-columns: minmax(0, 1fr);
}

.assignment-publication-review-grid > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 80rem) {
  .assignment-publication-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
