.palette-display {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .palette-color {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-family: "Pixelify Sans", system-ui, sans-serif;
    padding-bottom: 0.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }
  
  .palette-color:hover {
    transform: scale(1.05);
  }
  