:root {
  --bs-body-color: #212529;
  --bs-card-color: #212529;
  --bs-card-title-color: #212529;
  --bs-heading-color: #212529;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-color: #212529;
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #16181b;
  --bs-dropdown-link-hover-bg: #f8f9fa;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  min-height: 100vh;
  color: var(--bs-body-color);
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-link {
  transition: color 0.2s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.nav-link:hover {
  color: #ffc107;
}

.navbar {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 600;
}

/* full-width hero with gradient background */
.hero {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
  color: #fff;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.hero .hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero .display-5 {
  font-size: 1.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.hero .lead {
  font-size: 1.05rem;
  color: #fff;
}

.hero .btn-cta {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.hero .btn-cta:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #000;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 3rem;
  }

  .hero .display-5 {
    font-size: 2.5rem;
  }

  .hero .lead {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .hero {
    text-align: left;
  }

  .hero .hero-content {
    max-width: 60rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 2.5rem 1.25rem;
    border-radius: 1rem;
  }

  .hero .display-5 {
    font-size: 1.6rem;
  }

  .hero .lead {
    font-size: 0.95rem;
  }
}

.form-label {
  font-weight: 600;
}

.change-password-card .form-label {
  color: #212529 !important;
}

.form-control,
.form-select {
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  color: #212529;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-select:disabled {
  background-color: #e9ecef;
  color: #212529;
  border: 1px solid #ced4da;
}

.cursor-pointer {
  cursor: pointer;
}

.card {
  border: none;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  color: #212529;
}

.card-title,
.card-text {
  color: #212529;
}

.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #212529;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.card-form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 575.98px) {
  .card-form {
    max-width: none;
  }
}

/* tighten vertical rhythm for phones */
@media (max-width: 575.98px) {
  main.container {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hero {
    margin-bottom: 1rem;
    padding: 2.25rem 1.25rem;
  }

  .card {
    border-radius: 0.9rem;
  }

  .card-body {
    padding: 0.9rem 1rem;
  }

  .row.g-3,
  .row.gy-3 {
    --bs-gutter-y: 0.9rem;
  }

  .row.g-4,
  .row.g-5,
  .row.gy-4,
  .row.gy-5 {
    --bs-gutter-y: 1.15rem;
  }

  .row.g-4,
  .row.g-5 {
    --bs-gutter-x: 1.15rem;
  }

  .py-5 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .pt-5 {
    padding-top: 2.25rem !important;
  }

  .pb-5 {
    padding-bottom: 2.25rem !important;
  }

  .py-4 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .pt-4 {
    padding-top: 1.25rem !important;
  }

  .pb-4 {
    padding-bottom: 1.25rem !important;
  }

  .p-4 {
    padding: 1.25rem !important;
  }

  .px-4 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .py-3 {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }

  .my-5 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .mt-5 {
    margin-top: 2.25rem !important;
  }

  .mb-5 {
    margin-bottom: 2.25rem !important;
  }

  .my-4 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .mt-4 {
    margin-top: 1.25rem !important;
  }

  .mb-4 {
    margin-bottom: 1.25rem !important;
  }

  .form-label {
    margin-bottom: 0.4rem;
  }

  .btn {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .btn-lg {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
  }
}

.btn-primary {
  border-radius: 50rem;
}

.carousel-item img {
  max-height: 400px;
  object-fit: cover;
}

.carousel-item video {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background-color: #000;
}

.collab-list-card {
  padding: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.collab-list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.85rem;
  margin-bottom: 0.9rem;
}

.collab-list-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.collab-list-title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.collab-list-dates {
  margin: 0;
  font-size: 0.95rem;
}

.collab-list-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.collab-location-feedback {
  flex-basis: 100%;
  font-size: 0.9rem;
}

.collab-change-btn,
.collab-change-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 50rem;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  color: #e83e8c;
  border: 1px solid rgba(232, 62, 140, 0.3);
  background-color: rgba(232, 62, 140, 0.08);
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.collab-change-btn:hover,
.collab-change-btn:focus {
  color: #fff;
  background-color: #e83e8c;
  border-color: #e83e8c;
}

.collab-filters {
  position: relative;
}

.collab-filters > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 50rem;
  padding: 0.4rem 1rem;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .collab-list-header {
    gap: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .collab-list-actions {
    width: 100%;
  }

  .collab-change-btn {
    flex: 1 1 10rem;
    text-align: center;
  }

  .collab-filters {
    flex: 1 1 10rem;
    min-width: 0;
  }

  .collab-filters > .btn {
    width: 100%;
  }

  .carousel-item video {
    height: 240px;
  }
}

/* ensure collab filters dropdown fits on small screens */
.collab-filters-menu {
  --bs-dropdown-min-width: min(26rem, calc(100vw - 3rem));
  width: var(--bs-dropdown-min-width);
  min-width: var(--bs-dropdown-min-width);
  max-width: calc(100vw - 2rem);
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
}

.collab-filters-menu[data-bs-popper] {
  margin-top: 0.5rem;
}

.mobile-filter-header {
  display: none;
}

@media (min-width: 768px) {
  .collab-filters {
    position: relative;
  }

  .collab-location-feedback {
    margin-left: auto;
    max-width: 22rem;
  }

  .collab-filters-menu {
    --bs-dropdown-min-width: min(30rem, calc(100vw - 8rem));
    width: var(--bs-dropdown-min-width);
    min-width: var(--bs-dropdown-min-width);
  }

  .collab-filters-menu[data-bs-popper] {
    top: calc(100% + 0.5rem) !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 0) !important;
  }
}

.mobile-filter-close {
  display: none;
}

@media (max-width: 767.98px) {
  body.collab-filter-open {
    overflow: hidden;
  }

  .mobile-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 1040;
  }

  .collab-filters {
    z-index: 1050;
  }

  .collab-filters > .btn {
    position: relative;
    z-index: 1055;
  }

  .collab-filters-menu {
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
    z-index: 1045;
  }

  .collab-filters-menu.collab-filters-mobile {
    --mobile-filters-top: clamp(4.75rem, 10vh, 6.25rem);
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: var(--mobile-filters-top) !important;
    bottom: 1rem !important;
    width: min(26rem, calc(100vw - 1.5rem)) !important;
    max-width: calc(100vw - 1.5rem) !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    max-height: calc(100vh - var(--mobile-filters-top) - 1rem) !important;
    overflow-y: auto;
  }

  .collab-filters-menu.collab-filters-mobile .btn {
    width: 100%;
  }

  .mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .mobile-filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
  }

  .mobile-filter-close {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e83e8c;
  }

  .mobile-filter-close:hover,
  .mobile-filter-close:focus {
    color: #d63384;
    text-decoration: none;
  }

  .mobile-filter-close:focus-visible {
    outline: 2px solid rgba(232, 62, 140, 0.4);
    outline-offset: 2px;
  }
}

@media (max-width: 575.98px) {
  .collab-list-card {
    padding: 1.25rem;
  }
}

/* keep carousel arrows small so they don't block video controls */
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  pointer-events: none;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  pointer-events: all;
}

/* card images scale for small screens */
.card-img-top {
  height: 180px;
  object-fit: cover;
}

.flatpickr-wrapper {
  width: 100%;
  display: block;
}

.flatpickr-calendar.inline {
  display: block;
  margin: 0.5rem auto 0;
}

@media (max-width: 767.98px) {
  .flatpickr-calendar.inline {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 20rem);
  }

  .flatpickr-calendar.inline .flatpickr-days,
  .flatpickr-calendar.inline .dayContainer {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .flatpickr-calendar.inline {
    width: 100%;
  }

  .flatpickr-calendar.inline .flatpickr-day {
    max-width: none;
    height: 2.25rem;
    line-height: 2.25rem;
  }

  .flatpickr-calendar.inline .flatpickr-weekday {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .card-img-top {
    height: 250px;
  }
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dashboard-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dashboard-status-tabs .btn {
  border-radius: 999px;
  font-weight: 600;
  padding-inline: 1.25rem;
  background-color: #fff;
  color: #000;
  border-color: rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dashboard-status-tabs .btn.active {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.dashboard-status-tabs .btn:not(.active):hover,
.dashboard-status-tabs .btn:not(.active):focus {
  background-color: #f3f3f3;
  color: #000;
  border-color: rgba(0, 0, 0, 0.25);
}

.application-list[hidden] {
  display: none !important;
}

@media (min-width: 576px) {
  .dashboard-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* icon-inside-input helper */
.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.input-icon > input,
.input-icon > textarea,
.input-icon > select {
  padding-left: 2rem;
}

/* ensure alerts and inline links remain legible on light cards */
.alert-info {
  color: #000;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.card a:not(.collab-change-btn) {
  color: var(--bs-link-color);
}

.card a:not(.collab-change-btn):hover {
  color: var(--bs-link-hover-color);
}

.card a.btn:not(.collab-change-btn),
.card a.btn:not(.collab-change-btn):visited,
.card a.btn:not(.collab-change-btn):hover {
  color: #fff;
}

.card a.btn[class*='btn-outline'],
.card a.btn[class*='btn-outline']:visited {
  color: var(--bs-btn-color);
}

.card a.btn[class*='btn-outline']:hover,
.card a.btn[class*='btn-outline']:focus {
  color: #fff;
}

.collab-card .card-body {
  padding: 0.85rem 1rem 1rem;
}

.collab-card .card-title {
  margin-bottom: 0.25rem;
}

.collab-card .card-text {
  margin-bottom: 0;
}

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

.admin-media-grid img,
.admin-media-grid video {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.admin-media-grid video {
  background-color: #000;
}

/* ensure list group items remain readable on light glass cards */
.list-group-item {
  color: #212529;
  background-color: rgba(255, 255, 255, 0.85);
}
.text-pink {
  color: #e83e8c !important;
}
.text-pink:hover {
  color: #c2185b !important;
}
.text-muted-dark {
  color: rgba(33, 37, 41, 0.7) !important;
}
.btn-pink,
.btn-pink:visited {
  background-color: #e83e8c;
  color: #fff !important;
  border-color: #e83e8c;
}
.btn-pink:hover {
  background-color: #d12278;
  border-color: #d12278;
  color: #fff !important;
}
.bg-pink {
  background-color: #e83e8c !important;
  color: #fff !important;
}

/* Ensure secondary badges remain legible on light list items */
.badge.bg-secondary {
  background-color: rgba(0, 0, 0, 0.1);
  color: #212529;
}

/* peach table for admin creator list */
.table-peach {
  --bs-table-bg: #ffe5d9;
  --bs-table-striped-bg: #ffdcd2;
  --bs-table-striped-color: #000;
  --bs-table-hover-bg: #ffc9b9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #ffc9b9;
}

.table-peach thead th {
  background-color: #ffc9b9;
  color: #000;
}

.application-metrics-value {
  display: inline-block;
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw + 0.35rem, 1.5rem);
  margin-bottom: 0;
}

.collab-card-header {
  gap: 1.25rem;
}

.collab-card-header-actions {
  align-items: flex-end;
}

.collab-card-header-actions .btn {
  border-radius: 999px;
}

.application-metrics-action {
  text-align: right;
}

.application-metrics-action .btn {
  min-width: 8.5rem;
  border-radius: 999px;
}

.btn-collab-toggle {
  border-radius: 0.75rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-collab-toggle:hover,
.btn-collab-toggle:focus {
  background-color: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.45);
  color: #0d6efd;
}

.btn-collab-toggle i {
  transition: transform 0.2s ease;
}

.btn-collab-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.application-card {
  padding: 1rem 1.25rem;
  scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
  .application-card {
    padding: 1.25rem 1.5rem;
  }
}

.application-card-focused {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075),
    0 0 0 4px rgba(13, 110, 253, 0.25);
}

.application-card-header .badge {
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.4rem 0.65rem;
}

.application-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.application-decision,
.application-progress {
  min-width: 0;
}

.application-progress {
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.application-progress-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.application-decision-actions {
  gap: 0.5rem;
}

.application-decision-form .form-select-sm {
  min-width: 7rem;
}


.application-progress-form {
  gap: 0.75rem !important;
  width: 100%;
}

.application-progress-form .form-check-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0;
  margin: 0;
  padding-left: 0;
  min-width: 9.5rem;
  flex: 1 1 9.5rem;
}

.application-progress-form .form-check-input {
  margin-top: 0;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(13, 110, 253, 0.45);
  border-radius: 0.35rem;
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  accent-color: #0d6efd;
  margin-left: 0;
  float: none;
  position: static;
}

.application-progress-form .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.2);
  border-color: rgba(13, 110, 253, 0.65);
}

.application-progress-form .form-check-input:checked {
  border-color: rgba(13, 110, 253, 0.85);
  background-color: #0d6efd;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.application-progress-form .form-check-label {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.35;
}

.application-progress-form .btn {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .application-card-body .application-decision,
  .application-card-body .application-progress {
    width: 100%;
  }

  .application-decision-actions {
    width: 100%;
  }

  .application-decision-form {
    width: 100%;
  }

  .application-decision-form .form-select-sm {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .btn-collab-toggle {
    font-size: 0.95rem;
  }

  .application-metrics-action {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .card.glass {
    border-radius: 0.85rem;
  }

  .collab-card-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .collab-card-header-actions {
    align-items: flex-start !important;
    width: 100%;
    gap: 0.5rem;
  }

  .collab-card-header-actions .btn {
    width: 100%;
  }

  .application-card {
    padding: 0.9rem 1rem;
  }

  .application-card-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .application-card-header .text-end {
    width: 100%;
    text-align: left !important;
  }

  .application-decision-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .application-decision-actions form {
    width: 100%;
  }

  .application-decision-form {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.5rem;
  }

  .application-decision-form .form-select-sm,
  .application-decision-actions .btn {
    width: 100%;
  }

  .application-progress {
    padding: 0.75rem 0.85rem;
  }

  .application-progress-form {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.5rem !important;
  }

  .application-progress-form .form-check-inline {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: space-between;
    padding: 0.35rem 0;
  }

  .application-progress-form .btn {
    width: 100%;
  }

  .application-progress-title {
    margin-bottom: 0.25rem;
  }

  .application-metrics-action {
    text-align: left;
  }

  .application-metrics-action .btn {
    width: 100%;
  }

  .table-peach thead {
    display: none;
  }

  .table-peach tbody {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .table-peach tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    padding: 0.85rem;
    box-shadow: 0 0.25rem 0.6rem rgba(0, 0, 0, 0.05);
  }

  .table-peach tbody tr td {
    text-align: left !important;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .table-peach tbody tr td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(33, 37, 41, 0.65);
    font-weight: 600;
  }

  .table-peach tbody tr td[data-label='Action'] {
    grid-column: 1 / -1;
  }
}



