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

 :root {
  --box-size: 10px;
  --box-border-size: 1px;
  --boxes-count: 100;
}

html, body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

#emoji-button {
  cursor: pointer;
  background-color: #ccc;
  padding: 10px;
  border-radius: 10px;
}

.boxes-container {
  padding: 30px 0;
}

.boxes {
  margin: 0 auto;
  width: calc(var(--box-size) * var(--boxes-count));
  height: calc(var(--box-size) * var(--boxes-count));
}

.box-row {
  display: flex;
}

.box {
  width: var(--box-size);
  height: var(--box-size);
  background-color: #ccc;
  border: var(--box-border-size) solid #ddd;
  box-sizing: border-box;
}