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

.container {
  padding: 1rem;
  margin-inline: auto;
}

.user-tile {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  p {
    font-size: large;
    font-weight: bold;
  }

  .tile-flipper {
    display: none;
  }
}

.user-tile.selected {
  background-color: var(--color-accent-light);

  p {
    color: var(--color-content-soft);
  }

  .tile-flipper {
    display: block;
  }
}

.user-tile.flipped {
  background-color: var(--color-secondary-light);
  color: var(--color-primary);
}

.room-tile {
  text-align: center;
  font-weight: bold;
}

.room-tile.flipped {
  background-color: var(--color-secondary-light);
  color: var(--color-primary);
}

label {
  color: var(--color-content);
}
