/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.players-index-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 260px minmax(0, 1fr);
}

.player-list-header,
.player-list-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(300px, 2fr) auto;
}

.player-participation-grid {
  display: grid;
  gap: 0.375rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.player-portal-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
}

@media (max-width: 1023px) {
  .players-index-layout {
    grid-template-columns: 1fr;
  }

  .player-portal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .player-list-header {
    display: none;
  }

  .player-list-row {
    grid-template-columns: 1fr;
  }

  .player-participation-grid {
    grid-template-columns: 1fr;
  }
}
