/* 
 * Center alignment styles for the color palette section
 */

/* Make sure color displays are centered */
.color-palette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Center each color display in the grid */
.color-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Center the color swatch within its container */
.main-color-swatch {
  margin: 0 auto;
}

/* Center the color name */
.color-display h5 {
  text-align: center;
  width: 100%;
}

/* Center any variations */
.color-variations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

/* Center the color examples */
.color-examples {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

/* Center the tip section */
.color-guide {
  text-align: center;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .color-palette > .row {
    justify-content: center;
  }
}
