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

.page {
  margin-top: 3rem;

  & article {
    .article-header {
      display: flex;
      justify-content: space-between;
    }

    .article-empty {
      text-align: center;
    }
  }
}

.page-header {
  display: flex;
  justify-content: space-between;
}

.page-header-controls {
  display: flex;
  gap: 0.5rem;
}

.page-middle {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;

  .page-middle-image {
    margin-top: 1rem;
  }
}

.delete-button {
  color: #C52F21 !important;
  border: 0 !important;
}

.ml-1 {
  margin-left: 1rem;
}

.m-0 {
  margin: 0;
}

.w-100 {
  width: 100%;
}

.players-list {
  list-style: none; /* Remove dots */
  display: flex; /* Arrange items horizontally */
  gap: 1rem; /* Add 1rem space between items */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */

  & li {
    display: inline-block; 
  }

  .players-list-avatar {
    border-radius: var(--pico-border-radius, 2rem); 
  } 
}
